/* 
   Kombi724 Ankara - CSS Stylesheet
   Modern, Premium Boiler Service Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #131a26;
    --bg-tertiary: #1c2536;
    --bg-card: rgba(28, 37, 54, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --color-primary: #f97316; /* Amber/Orange for Heat/Boiler */
    --color-primary-hover: #ea580c;
    --color-primary-rgb: 249, 115, 22;
    
    --color-secondary: #0ea5e9; /* Light blue for water/cooling/tech */
    --color-secondary-hover: #0284c7;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --font-sans: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-primary); }
.text-blue { color: var(--color-secondary); }

/* Common Components */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.1);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

header.scrolled {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo span {
    color: var(--color-primary);
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--color-primary);
    animation: pulse 2s infinite;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 992px) {
    .header-actions {
        display: flex;
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.95) 100%),
                url('assets/images/hero.png') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero {
        background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 30%, rgba(11, 15, 25, 0.6) 100%),
                    url('assets/images/hero.png') no-repeat center center / cover;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--color-primary);
}

.hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: flash 1.5s infinite;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.25rem;
    }
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary), #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-desc {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.25rem;
    }
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 480px) {
    .hero-btns {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .hero-btns {
        justify-content: flex-start;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.stat-item h4 span {
    color: var(--color-primary);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Boiler Graphic / Visual Element */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.boiler-graphic {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, #1c2536, #131a26);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .boiler-graphic {
        width: 320px;
        height: 440px;
    }
}

.boiler-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.boiler-brand {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.boiler-screen {
    width: 100%;
    height: 90px;
    background-color: #030712;
    border-radius: var(--radius-sm);
    border: 1px solid #1f2937;
    margin: 1.5rem 0;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
}

.screen-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.screen-temp {
    font-size: 1.75rem;
    color: #22c55e;
    font-weight: 700;
    line-height: 1;
}

.screen-status {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.screen-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.flame-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    animation: flicker 1s infinite alternate;
}

.bar-indicator {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 3px;
}

.boiler-dials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.dial {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374151, #1f2937);
    border: 1px solid #4b5563;
    position: relative;
}

.dial::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--text-muted);
    top: 5px;
    left: calc(50% - 1px);
    transform-origin: bottom center;
    transform: rotate(35deg);
}

.boiler-pipes {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pipe {
    width: 14px;
    height: 25px;
    background: linear-gradient(to bottom, #4b5563, #1f2937);
    border-radius: 0 0 4px 4px;
    position: relative;
}

.pipe::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 6px;
    background: #374151;
    top: -3px;
    left: -3px;
    border-radius: 2px;
}

.pipe-hot { background: linear-gradient(to bottom, var(--color-primary), #7c2d12); }
.pipe-cold { background: linear-gradient(to bottom, var(--color-secondary), #0369a1); }

/* Decorative Orbs in background */
.orb-1 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(var(--color-primary-rgb), 0.15);
    filter: blur(80px);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    transition: all var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    padding: 0;
}

.service-img-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--color-primary-rgb), 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-card.active-card {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.25);
    background: rgba(var(--color-primary-rgb), 0.03);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(var(--color-primary-rgb), 0.08);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.75rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background: var(--color-primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.why-visual {
    display: flex;
    justify-content: center;
}

.badge-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.wall-badge {
    padding: 2rem 1.5rem;
    text-align: center;
}

.wall-badge i {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.wall-badge h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.wall-badge p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
}

.why-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(var(--color-primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-item-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-white);
}

.why-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Form / Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .booking-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.booking-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--text-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.booking-form-wrapper {
    padding: 3rem 2.5rem;
}

@media (max-width: 576px) {
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    color: var(--text-white);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Contact Section */
.contact {
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(var(--color-primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-white);
}

.contact-card-text p, .contact-card-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-card-text a:hover {
    color: var(--color-primary);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-color: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.map-placeholder h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    max-width: 320px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: #060910;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Floating Action Buttons (Sticky Mobile Icons) */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-4px);
}

.floating-btn-phone {
    background-color: var(--color-primary);
}

.floating-btn-phone:hover {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.floating-btn-whatsapp {
    background-color: #25d366;
}

.floating-btn-whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Tooltips */
.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background-color: rgba(11, 15, 25, 0.95);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes flash {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes flicker {
    0% { transform: scale(1) translateY(0); opacity: 0.9; }
    50% { transform: scale(0.95, 1.05) translateY(-1px); opacity: 1; }
    100% { transform: scale(1.05, 0.95) translateY(1px); opacity: 0.85; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Toast Message */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
}

.toast {
    background-color: #1e293b;
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: transform var(--transition-normal);
    font-weight: 500;
}

.toast.show {
    transform: translateX(0);
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-success {
    border-left-color: #22c55e;
}
