/* =========================================
   CSS Reset & Variables
========================================= */
:root {
    --primary: #2563EB; /* Royal Blue */
    --primary-light: #60A5FA; /* Light Blue */
    --primary-dark: #1E3A8A; /* Deep Navy */
    --secondary: #38BDF8; /* Sky Blue */
    --accent: #F59E0B; /* Amber/Gold Accent */
    --text-main: #F8FAFC; /* Slate 50 */
    --text-muted: #94A3B8; /* Slate 400 */
    --bg-main: #0B1120; /* Very Dark Slate */
    --bg-light: #1E293B; /* Slate 800 */
    --bg-card: rgba(30, 41, 59, 0.7);
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   Typography & Utilities
========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

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

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-primary-small {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

/* =========================================
   Navbar
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-main);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--text-main);
    text-shadow: none;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.logo i {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}

.nav-links nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    color: var(--text-main);
    filter: none;
}


/* =========================================
   Page Header
========================================= */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('img7.jpeg') center/cover no-repeat fixed;
    color: var(--white);
    padding-top: 100px;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.9) 0%, rgba(30, 58, 138, 0.7) 100%);
    z-index: 1;
}

.page-header-about {
    background: url('about_hero.png') center/cover no-repeat;
}

.page-header-services {
    background: url('services_header.png') center/cover no-repeat;
}

.page-header-gallery {
    background: url('project_success.png') center/cover no-repeat;
}

.page-header-contact {
    background: url('about_hero.png') center/cover no-repeat;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.active-link {
    color: var(--secondary) !important;
}

.active-link::after {
    width: 100% !important;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.pexels.com/photos/1001682/pexels-photo-1001682.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 4, 94, 0.9) 0%, rgba(0, 119, 182, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Wave Shape Divider */
.wave-bottom {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px); /* Prevent tiny gap in some browsers */
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.wave-bottom .shape-fill {
    fill: var(--bg-main);
}

/* =========================================
   Services Section
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

/* =========================================
   About Section
========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
}

/* About Image Slider */
.about-slider {
    position: relative;
    max-width: 400px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.floating-img {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(37,99,235,0.4);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 10;
    white-space: nowrap;
}

.experience-badge .number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.features-list i {
    color: var(--primary-light);
    font-size: 1.3rem;
}

/* =========================================
   Stats Section
========================================= */
.stats {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item h3::after {
    content: '+';
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* =========================================
   Home Intro Grid
========================================= */
.home-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .home-intro-grid .reveal.right {
        order: -1;
    }

    .home-intro-grid img {
        max-width: 100% !important;
        height: 220px !important;
    }

    .home-intro-grid h2 {
        font-size: 1.9rem !important;
    }

    .home-intro-grid .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   Contact Section
========================================= */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.info-item i {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.info-item:hover i {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
    border-color: rgba(255,255,255,0.2);
}


.info-item h4 {
    color: var(--text-main);
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    white-space: nowrap;
}


/* =========================================
   Footer
========================================= */
footer {
    background: #020617; border-top: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--accent);
}

.footer-logo p {
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* =========================================
   Gallery Section
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.1);
}

/* =========================================
   Floating Buttons
========================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    transition: var(--transition);
}

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

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: var(--white);
}

.tooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0,0,0,0.8);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   Animations & Responsive
========================================= */
/* Setup for JS Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Setup for initial load Hero animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; transition-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 40px;
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.8);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-main);
        font-size: 1.2rem;
    }
    
    .navbar .logo {
        color: var(--white);
        font-size: 1.05rem;
        gap: 5px;
    }
    
    .navbar .logo i {
        font-size: 1.35rem;
    }
    
    .navbar.scrolled .logo, .navbar.scrolled .hamburger {
        color: var(--text-main);
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .experience-badge {
        left: -10px;
        bottom: -15px;
        padding: 12px 18px;
    }
}



.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* =========================================
   Appointment Form & Components
========================================= */
.appointment-form-container {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-compact-header {
    margin-bottom: 18px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 14px;
}

.form-compact-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-compact-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.appointment-form {
    flex: 1;
}

.form-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.form-group select option {
    background: var(--bg-main);
    color: var(--white);
}

.form-group-span {
    grid-column: 1 / -1;
}

.form-submit-center {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.form-submit-center .btn-block {
    width: auto;
    min-width: 280px;
    padding: 13px 40px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

/* Map container */
.map-container iframe {
    display: block;
    width: 100%;
}

/* Robo Badge global styles */
.robo-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: #000;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* =========================================
   Contact Page Layout Rearrangement
========================================= */
.contact-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .contact-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .appointment-form-container {
        order: 1;
        padding: 20px;
    }

    .form-grid-compact {
        grid-template-columns: 1fr;
    }

    .form-submit-center .btn-block {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .appointment-form-container {
        padding: 18px 15px;
    }

    .form-grid-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-compact-header h3 {
        font-size: 1.3rem;
    }

    .form-submit-center .btn-block {
        min-width: 100%;
        font-size: 0.95rem;
    }
}

/* =========================================
   Aesthetic Elevation - Contact Page
========================================= */
.contact-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

.status-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-top: 5px;
    letter-spacing: 1px;
}

.status-tag.pulse-green {
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-tag.pulse-green::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10B981;
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.btn-primary.btn-large {
    animation: btn-glow 3s infinite alternate;
}

@keyframes btn-glow {
    0% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
    100% { box-shadow: 0 10px 50px rgba(37, 99, 235, 0.6); }
}
