/* Labour27 Frontend - Ather Energy Inspired Design */
/* Dark navy theme with orange/amber accents for construction industry */

:root {
    /* Primary Color Palette - Construction Industry Theme */
    --primary-navy: #0a1628;
    --primary-navy-light: #122035;
    --primary-navy-dark: #060e1a;
    
    /* Accent Colors - Yellow Theme */
    --accent-orange: #fbbf24;
    --accent-orange-light: #fcd34d;
    --accent-amber: #f59e0b;
    --accent-yellow: #f0c760;
    
    /* Section Background */
    --section-light-bg: #F7F7F7;
    
    /* Neutral Colors */
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    
    /* Background Gradients */
    --gradient-hero: linear-gradient(180deg, #0a1628 0%, #122035 50%, #0a1628 100%);
    --gradient-section: linear-gradient(135deg, #0a1628 0%, #0f172a 100%);
    --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.8) 100%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Navbar Heights - Single Source of Truth */
    --navbar-height: 70px;
    --navbar-height-tablet: 60px;
    --navbar-height-mobile: 55px;
    --navbar-height-small: 50px;
    
    /* Touch Targets - Mobile Accessibility */
    --touch-target-min: 44px;
    --touch-target-comfortable: 48px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.ather-theme {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-navy);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

.ather-h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ather-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.ather-h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.ather-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   NAVIGATION BAR
======================================== */
.ather-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 0;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.ather-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.ather-navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.ather-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    position: relative;
}

.ather-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ather-logo img {
    height: 28px;
    width: auto;
    transition: transform var(--transition-normal);
}

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

.ather-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.ather-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0 auto;
    padding: 0 30px;
    flex: 1;
    justify-content: center;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 1400px) {
    .ather-navbar {
        padding: 0 20px;
    }
    
    .ather-nav-links {
        gap: 20px;
        padding: 0 20px;
    }
    
    .ather-nav-link {
        font-size: 0.9rem;
    }
    
    .ather-hero-content {
        padding-top: calc(var(--navbar-height) + 20px + env(safe-area-inset-top, 0px));
    }
}

@media (max-width: 1200px) {
    .ather-navbar {
        padding: 0 15px;
    }
    
    .ather-navbar-inner {
        height: var(--navbar-height);
    }
    
    .ather-logo img {
        height: 30px;
    }
    
    .ather-nav-links {
        gap: 15px;
        padding: 0 15px;
    }
    
    .ather-nav-link {
        font-size: 0.85rem;
    }
    
    .ather-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        min-height: var(--touch-target-min);
    }
    
    .ather-hero-content {
        padding-top: calc(var(--navbar-height) + 20px + env(safe-area-inset-top, 0px));
    }
}

@media (max-width: 1024px) {
    .ather-navbar {
        padding: 0 15px;
    }
    
    .ather-navbar-inner {
        height: var(--navbar-height-tablet);
    }
    
    .ather-logo img {
        height: 26px;
    }
    
    .ather-nav-links {
        gap: 12px;
        padding: 0 12px;
    }
    
    .ather-nav-link {
        font-size: 0.8rem;
    }
    
    .ather-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: var(--touch-target-min);
    }
    
    .ather-hero-content {
        padding-top: calc(var(--navbar-height-tablet) + 20px + env(safe-area-inset-top, 0px));
    }
}

.ather-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.ather-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width var(--transition-normal);
}

.ather-nav-link:hover {
    color: var(--primary-navy);
}

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

.ather-nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    flex-shrink: 0;
}

.ather-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    -webkit-tap-highlight-color: transparent;
}

.ather-btn-primary {
    background: var(--accent-orange);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.ather-btn-primary:hover {
    background: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.ather-btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ather-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.ather-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ather-btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.ather-mobile-toggle {
    display: none;
    background: none;
    border: none;
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    padding: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.ather-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px auto;
    transition: all var(--transition-normal);
}

/* ========================================
   HERO SECTION - Full Screen Carousel
======================================== */
.ather-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.ather-hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.ather-hero-content {
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.ather-feature-tags {
    will-change: opacity;
    transition: opacity 0.1s ease-out;
}

.ather-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.ather-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.ather-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ather-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.3) 30%,
        rgba(10, 22, 40, 0.4) 60%,
        rgba(10, 22, 40, 0.7) 100%
    );
}

.ather-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--navbar-height) + 30px + env(safe-area-inset-top, 0px)) 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 40px);
    min-height: calc(100svh - 40px);
    z-index: 10;
    text-align: left;
    box-sizing: border-box;
}

.ather-hero-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ather-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.1;
    max-width: 700px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.ather-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.ather-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Hero Indicators */
.ather-hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.ather-hero-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.ather-hero-indicator.active {
    background: var(--accent-orange);
    width: 60px;
}

.ather-hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Feature Tags - Horizontal Scroll */
.ather-feature-tags {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 15;
}

.ather-feature-tags-track {
    display: flex;
    animation: scrollTags 30s linear infinite;
    gap: 30px;
    padding: 0 20px;
}

.ather-feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.ather-feature-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-orange);
}

.ather-feature-tag i {
    color: var(--accent-orange);
}

@keyframes scrollTags {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SECTION STYLES
======================================== */
.ather-section {
    padding: var(--section-padding);
    position: relative;
}

.ather-section-dark {
    background: var(--primary-navy);
}

.ather-section-gradient {
    background: var(--gradient-section);
}

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

.ather-section-light .ather-section-title,
.ather-section-light h2,
.ather-section-light h3,
.ather-section-light h4 {
    color: var(--text-dark);
}

.ather-section-light p,
.ather-section-light .ather-section-subtitle {
    color: #666666;
}

.ather-section-light .ather-service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.ather-section-light .ather-service-card h3 {
    color: var(--text-dark);
}

.ather-section-light .ather-service-card p {
    color: #666666;
}

.ather-section-light .ather-service-card:hover {
    border-color: var(--accent-orange);
}

.ather-section-light .ather-feature-list li span {
    color: #666666;
}

.ather-section-light .ather-stat-label {
    color: #666666;
}

.ather-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.ather-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ather-section-tag {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ather-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

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

/* ========================================
   COMPANY/ABOUT SECTION
======================================== */
.ather-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ather-about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

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

.ather-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.ather-stat {
    text-align: left;
}

.ather-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.ather-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.ather-about-image {
    position: relative;
}

.ather-about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* ========================================
   SERVICES SECTION
======================================== */
.ather-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ather-service-card {
    position: relative;
    height: 560px;
    border-radius: 28px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.ather-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ather-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    transition: all var(--transition-normal);
    z-index: 2;
}

.ather-service-card:hover .ather-service-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.98) 100%
    );
}

.ather-service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.ather-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-white);
    font-weight: 700;
}

.ather-service-card p {
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ather-service-card .ather-btn-white {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: var(--text-dark);
    font-weight: 600;
}

.ather-service-card .ather-btn-white:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: var(--text-dark);
}

/* ========================================
   INQUIRY FORM SECTION
======================================== */
.ather-inquiry-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.ather-section-light.ather-inquiry-section {
    background: var(--section-light-bg);
}

.ather-section-light .ather-form-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    backdrop-filter: none;
}

.ather-section-light .ather-form-label {
    color: var(--text-dark);
}

.ather-section-light .ather-form-input,
.ather-section-light .ather-form-select,
.ather-section-light .ather-form-textarea {
    color: var(--text-dark);
    background: #ffffff;
    border: 1px solid #d1d5db;
}

.ather-section-light .ather-form-input:focus,
.ather-section-light .ather-form-select:focus,
.ather-section-light .ather-form-textarea:focus {
    border-color: var(--accent-orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.ather-section-light .ather-form-input::placeholder,
.ather-section-light .ather-form-textarea::placeholder {
    color: #9ca3af;
}

.ather-section-light .ather-inquiry-feature i,
.ather-section-light .ather-inquiry-feature span {
    color: #666666;
}

.ather-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ather-inquiry-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

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

.ather-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.ather-form-group {
    margin-bottom: 24px;
}

.ather-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.ather-form-input,
.ather-form-select,
.ather-form-textarea {
    width: 100%;
    padding: 14px 18px;
    min-height: var(--touch-target-min);
    line-height: 1.2;
    font-size: 1rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    outline: none;
    transition: all var(--transition-normal);
    -webkit-appearance: none;
    appearance: none;
}

.ather-form-input:focus,
.ather-form-select:focus,
.ather-form-textarea:focus {
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.ather-form-input::placeholder,
.ather-form-textarea::placeholder {
    color: var(--text-muted);
}

.ather-form-select option {
    background: var(--primary-navy);
    color: var(--text-white);
}

.ather-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.ather-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========================================
   PARTNERS SECTION
======================================== */
.ather-partners-section {
    background: var(--primary-navy-dark);
    padding: 60px 0;
    overflow: hidden;
}

.ather-section-light.ather-partners-section {
    background: var(--section-light-bg);
}

.ather-section-light .ather-partner-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.ather-section-light .ather-partner-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ather-section-light .ather-partner-card h4 {
    color: var(--text-dark);
}

.ather-section-light .ather-partner-card p {
    color: #666666;
}

.ather-partners-track {
    display: flex;
    gap: 60px;
    animation: partnerScroll 40s linear infinite;
}

.ather-partner-logo {
    height: 60px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition-normal);
}

.ather-partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   LOGIN/CTA SECTION
======================================== */
.ather-cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    padding: 100px 0;
    text-align: center;
}

.ather-section-light.ather-cta-section {
    background: var(--section-light-bg);
}

.ather-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.ather-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 20px;
}

.ather-section-light.ather-cta-section .ather-cta-content h2 {
    color: var(--text-dark);
}

.ather-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.ather-section-light.ather-cta-section .ather-cta-content p {
    color: #666666;
}

.ather-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.ather-btn-dark:hover {
    background: var(--primary-navy-light);
    transform: translateY(-2px);
}

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

.ather-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ========================================
   CONTACT SECTION
======================================== */
.ather-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ather-contact-card {
    text-align: center;
    padding: 30px;
}

.ather-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ather-contact-icon i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.ather-contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.ather-contact-card .ather-address-text,
.ather-contact-card .ather-phone-text {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.ather-contact-card .ather-phone-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.ather-contact-card a {
    color: var(--accent-orange);
    text-decoration: none;
}

.ather-contact-card a:hover {
    text-decoration: underline;
}

.ather-contact-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.ather-contact-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 40, 0.1);
    border-radius: 50%;
    color: #0a1628;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.ather-contact-social a:hover {
    background: #0a1628;
    color: #ffffff;
    transform: translateY(-3px);
    text-decoration: none;
}

.ather-section-light .ather-contact-card h4 {
    color: var(--text-dark);
}

.ather-section-light .ather-contact-card p {
    color: #666666;
}

.ather-section-light .ather-contact-icon {
    background: rgba(251, 191, 36, 0.15);
}

/* ========================================
   FOOTER
======================================== */
.ather-footer {
    background: var(--primary-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 30px;
}

.ather-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.ather-footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.ather-footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.ather-footer-product-of {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-bottom: 2px !important;
    margin-top: 15px !important;
    font-style: italic;
}

.ather-footer-company-name {
    color: var(--accent-orange) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

.ather-footer-cin {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.5px;
}

.ather-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.ather-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.ather-social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.ather-footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.ather-footer-links {
    list-style: none;
}

.ather-footer-links li {
    margin-bottom: 12px;
}

.ather-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.ather-footer-links a:hover {
    color: var(--accent-orange);
}

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

.ather-footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ather-footer-legal {
    display: flex;
    gap: 30px;
}

.ather-footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.ather-footer-legal a:hover {
    color: var(--accent-orange);
}

/* ========================================
   POLICY MODAL - Ather Style
======================================== */
.ather-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ather-modal-overlay.active {
    display: flex;
}

.ather-modal {
    background: var(--primary-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ather-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(249, 115, 22, 0.1);
}

.ather-modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
}

.ather-modal-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.ather-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.ather-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

.ather-modal-body h3 {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin: 25px 0 12px;
}

.ather-modal-body h3:first-child {
    margin-top: 0;
}

.ather-modal-body p,
.ather-modal-body li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.ather-modal-body ul {
    list-style: none;
    padding-left: 20px;
}

.ather-modal-body ul li::before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* ========================================
   SUCCESS MODAL
======================================== */
.ather-success-modal {
    text-align: center;
    padding: 50px 30px;
}

.ather-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.ather-success-icon i {
    font-size: 2.5rem;
    color: #22c55e;
}

.ather-success-modal h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.ather-success-modal p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ========================================
   ANIMATIONS
======================================== */
.ather-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ather-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.ather-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ather-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.ather-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ather-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   BLOG PAGE STYLES
======================================== */
.ather-blog-hero {
    padding: 150px 0 80px;
    background: var(--gradient-section);
}

.ather-blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.ather-blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-lg);
}

.ather-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ather-blog-card-content {
    padding: 24px;
}

.ather-blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ather-blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.ather-blog-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ather-blog-detail-hero {
    padding: 120px 0 60px;
}

.ather-blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.ather-blog-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    color: var(--accent-orange);
}

.ather-blog-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.ather-blog-content img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* ========================================
   MOBILE MENU
======================================== */
.ather-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ather-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.ather-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ather-mobile-nav li {
    margin-bottom: 15px;
}

.ather-mobile-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    min-height: var(--touch-target-min);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.ather-mobile-link:hover {
    color: var(--accent-orange);
}

.ather-mobile-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ather-mobile-cta .ather-btn {
    width: 100%;
}

.ather-mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.ather-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ather-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   ANIMATION CLASSES
======================================== */
.ather-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ather-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PARTNERS GRID & CARDS
======================================== */
.ather-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ather-partner-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.ather-partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-lg);
}

.ather-partner-icon {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ather-partner-icon i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.ather-partner-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.ather-partner-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   INQUIRY FEATURES
======================================== */
.ather-inquiry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.ather-inquiry-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ather-inquiry-feature i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.ather-inquiry-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   FEATURE LIST (About Section)
======================================== */
.ather-about-features {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.ather-about-features h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
}

.ather-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ather-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ather-feature-list li:last-child {
    border-bottom: none;
}

.ather-feature-list li i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.ather-feature-list li span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   CONTACT FORM WRAPPER
======================================== */
.ather-contact-form-wrapper {
    max-width: 700px;
    margin: 60px auto 0;
}

.ather-contact-form-wrapper .ather-form-card {
    background: rgba(255, 255, 255, 0.02);
}

.ather-contact-form-wrapper h3 {
    font-size: 1.3rem;
    color: var(--text-white);
}

/* ========================================
   FOOTER BOTTOM LINKS
======================================== */
.ather-footer-bottom-links {
    display: flex;
    gap: 30px;
}

.ather-footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.ather-footer-bottom-links a:hover {
    color: var(--accent-orange);
}

/* ========================================
   POLICY MODAL ENHANCEMENTS
======================================== */
.ather-policy-modal {
    max-width: 800px;
    background: var(--primary-navy);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.ather-policy-modal .ather-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--glass-border);
}

.ather-policy-modal .ather-modal-header h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin: 0;
}

.ather-policy-modal .ather-modal-content {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    background: var(--primary-navy);
}

.ather-policy-modal .ather-modal-content h5 {
    font-size: 1.1rem;
    color: var(--accent-orange);
    margin: 25px 0 12px;
    font-weight: 600;
}

.ather-policy-modal .ather-modal-content h5:first-child {
    margin-top: 0;
}

.ather-policy-modal .ather-modal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.ather-policy-modal .ather-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: absolute;
    top: 15px;
    right: 15px;
}

.ather-policy-modal .ather-modal-close:hover {
    background: var(--accent-orange);
    color: var(--primary-navy);
}

/* ========================================
   SUCCESS MODAL CLOSE BUTTON
======================================== */
.ather-success-modal .ather-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.ather-success-modal {
    position: relative;
}

/* ========================================
   SERVICE MODAL
======================================== */
#serviceModal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: fadeIn 0.6s ease;
}

#serviceModal.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease;
}

#serviceModal .ather-modal-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    max-width: 500px;
    max-height: 85vh;
    width: 95%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2001;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#serviceModal .ather-modal-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

#serviceModal .ather-modal-body {
    padding: 35px;
    padding-top: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

#serviceModal .ather-modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.5rem;
}

#serviceModal .ather-modal-content p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

#serviceModal .ather-modal-content .ather-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px 15px;
    min-height: var(--touch-target-min);
    font-size: 0.85rem;
}

#serviceModal .ather-modal-close {
    display: none;
}

/* ========================================
   RESPONSIVE - TABLET & MOBILE
======================================== */

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .ather-navbar {
        top: 0;
        left: 0;
        right: 0;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .ather-navbar-inner {
        height: var(--navbar-height-tablet);
    }
    
    .ather-nav-links {
        display: none;
    }
    
    .ather-nav-cta {
        display: none;
    }
    
    .ather-mobile-toggle {
        display: block;
    }
    
    .ather-mobile-menu {
        display: none;
        position: fixed;
        top: var(--navbar-height-tablet);
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 0;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    
    .ather-mobile-menu.active {
        display: block;
    }
    
    .ather-mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .ather-mobile-nav li {
        margin-bottom: 15px;
    }
    
    .ather-mobile-link {
        color: var(--text-dark);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 12px 0;
        min-height: var(--touch-target-min);
        border-bottom: 1px solid #f0f0f0;
    }
    
    .ather-mobile-cta {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
    }
    
    .ather-mobile-cta .ather-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ather-hero {
        min-height: 100vh;
        min-height: 100svh;
        height: auto;
    }
    
    .ather-hero-content {
        padding: calc(var(--navbar-height-tablet) + 20px + env(safe-area-inset-top, 0px)) 30px 40px;
        text-align: center;
        align-items: center;
        min-height: calc(100vh - 60px);
        min-height: calc(100svh - 60px);
    }
    
    .ather-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: center;
    }
    
    .ather-hero-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .ather-hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .ather-feature-tags {
        bottom: 80px;
    }
    
    .ather-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ather-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ather-service-card {
        height: 400px;
    }
    
    .ather-inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ather-inquiry-content {
        text-align: center;
    }
    
    .ather-inquiry-content .ather-section-title {
        text-align: center !important;
    }
    
    .ather-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ather-inquiry-features {
        justify-content: center;
    }
    
    .ather-stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .ather-stat {
        text-align: center;
        min-width: 120px;
    }
    
    .ather-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ather-login-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .ather-navbar {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 0 15px;
    }
    
    .ather-navbar-inner {
        height: var(--navbar-height-mobile);
    }
    
    .ather-mobile-menu {
        top: var(--navbar-height-mobile);
    }
    
    .ather-logo img {
        height: 24px;
    }
    
    .ather-hero-content {
        padding: calc(var(--navbar-height-mobile) + 20px + env(safe-area-inset-top, 0px)) 20px 40px;
        text-align: center;
        align-items: center;
        min-height: calc(100vh - 60px);
        min-height: calc(100svh - 60px);
    }
    
    .ather-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .ather-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .ather-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .ather-hero-buttons .ather-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .ather-feature-tags {
        bottom: 70px;
    }
    
    .ather-feature-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .ather-section {
        padding: 60px 0;
    }
    
    .ather-container {
        padding: 0 20px;
    }
    
    .ather-section-header {
        margin-bottom: 40px;
    }
    
    .ather-section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .ather-section-subtitle {
        font-size: 1rem;
    }
    
    .ather-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ather-service-card {
        height: 350px;
    }
    
    .ather-service-content {
        padding: 20px;
    }
    
    .ather-service-card h3 {
        font-size: 1.2rem;
    }
    
    .ather-service-card p {
        font-size: 0.9rem;
    }
    
    .ather-form-card {
        padding: 25px;
    }
    
    .ather-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .ather-stats-row {
        gap: 20px;
    }
    
    .ather-stat-number {
        font-size: 2rem;
    }
    
    .ather-stat-label {
        font-size: 0.8rem;
    }
    
    .ather-about-features {
        padding: 25px;
    }
    
    .ather-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .ather-footer-column {
        text-align: center;
    }
    
    .ather-login-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Portrait (max-width: 575px) */
@media (max-width: 575px) {
    .ather-navbar {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 0 10px;
    }
    
    .ather-navbar .container {
        padding: 0 10px;
    }
    
    .ather-navbar-inner {
        height: var(--navbar-height-small);
    }
    
    .ather-logo img {
        height: 22px;
    }
    
    .ather-mobile-toggle {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .ather-mobile-toggle span {
        width: 20px;
        margin: 5px auto;
    }
    
    .ather-mobile-menu {
        top: var(--navbar-height-small);
        left: 0;
        right: 0;
        padding: 15px;
        border-radius: 0;
    }
    
    .ather-mobile-link {
        font-size: 1rem;
        padding: 10px 0;
        min-height: var(--touch-target-min);
    }
    
    .ather-hero {
        min-height: 100svh;
        height: auto;
    }
    
    .ather-hero-content {
        padding: calc(var(--navbar-height-small) + 20px + env(safe-area-inset-top, 0px)) 15px 30px;
        text-align: center;
        align-items: center;
        min-height: calc(100vh - 60px);
        min-height: calc(100svh - 60px);
    }
    
    .ather-hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    
    .ather-hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 12px;
    }
    
    .ather-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .ather-hero-buttons {
        gap: 10px;
    }
    
    .ather-hero-buttons .ather-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .ather-hero-indicators {
        bottom: 25px;
    }
    
    .ather-hero-indicator {
        width: 30px;
        height: 3px;
    }
    
    .ather-hero-indicator.active {
        width: 45px;
    }
    
    .ather-feature-tags {
        bottom: 55px;
    }
    
    .ather-feature-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .ather-section {
        padding: 50px 0;
    }
    
    .ather-container {
        padding: 0 15px;
    }
    
    .ather-section-header {
        margin-bottom: 30px;
    }
    
    .ather-section-tag {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .ather-section-title {
        font-size: 1.5rem;
    }
    
    .ather-section-subtitle {
        font-size: 0.95rem;
    }
    
    .ather-about-content h3 {
        font-size: 1.2rem;
    }
    
    .ather-about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .ather-stats-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .ather-stat {
        min-width: 80px;
        flex: 1;
    }
    
    .ather-stat-number {
        font-size: 1.75rem;
    }
    
    .ather-stat-label {
        font-size: 0.75rem;
    }
    
    .ather-about-features {
        padding: 20px;
        border-radius: 15px;
    }
    
    .ather-about-features h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .ather-feature-list li {
        padding: 12px 0;
        gap: 12px;
    }
    
    .ather-feature-list li i {
        font-size: 1rem;
    }
    
    .ather-feature-list li span {
        font-size: 0.9rem;
    }
    
    .ather-service-card {
        height: 320px;
        border-radius: 20px;
    }
    
    .ather-service-content {
        padding: 15px;
    }
    
    .ather-service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .ather-service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .ather-service-card .ather-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-height: var(--touch-target-min);
        margin-top: 10px !important;
    }
    
    .ather-form-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .ather-form-label {
        font-size: 0.85rem;
    }
    
    .ather-form-input,
    .ather-form-select,
    .ather-form-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .ather-inquiry-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ather-inquiry-feature {
        justify-content: center;
        padding: 10px 15px;
    }
    
    .ather-inquiry-feature span {
        font-size: 0.9rem;
    }
    
    .ather-partners-grid {
        grid-template-columns: 1fr;
    }
    
    .ather-partner-card {
        padding: 25px 20px;
    }
    
    .ather-partner-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .ather-partner-card h4 {
        font-size: 1.1rem;
    }
    
    .ather-partner-card p {
        font-size: 0.9rem;
    }
    
    .ather-login-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .ather-login-card h4 {
        font-size: 1rem;
    }
    
    .ather-login-card p {
        font-size: 0.85rem;
    }
    
    .ather-login-card .ather-btn {
        padding: 12px 20px;
        min-height: var(--touch-target-min);
        font-size: 0.85rem;
    }
    
    .ather-footer {
        padding: 50px 0 20px;
    }
    
    .ather-footer-logo img {
        height: 30px;
    }
    
    .ather-footer-about p {
        font-size: 0.9rem;
    }
    
    .ather-footer-title {
        font-size: 1rem;
    }
    
    .ather-footer-links a,
    .ather-footer-contact p {
        font-size: 0.9rem;
    }
    
    .ather-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ather-footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .ather-footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    #serviceModal .ather-modal-content {
        max-width: 95%;
        max-height: 90vh;
        border-radius: 15px;
    }
    
    #serviceModal .ather-modal-image {
        height: 200px;
    }
    
    #serviceModal .ather-modal-body {
        padding: 25px 20px;
    }
    
    #serviceModal .ather-modal-content h2 {
        font-size: 1.3rem;
    }
    
    #serviceModal .ather-modal-content p {
        font-size: 0.85rem;
    }
    
    .ather-policy-modal {
        max-width: 95%;
        border-radius: 15px;
    }
    
    .ather-policy-modal .ather-modal-header {
        padding: 15px 20px;
    }
    
    .ather-policy-modal .ather-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .ather-policy-modal .ather-modal-content {
        padding: 20px;
    }
    
    .ather-policy-modal .ather-modal-content h5 {
        font-size: 1rem;
    }
    
    .ather-policy-modal .ather-modal-content p {
        font-size: 0.9rem;
    }
}

/* Extra small devices (max-width: 375px) */
@media (max-width: 375px) {
    .ather-hero-title {
        font-size: 1.4rem;
    }
    
    .ather-hero-subtitle {
        font-size: 0.85rem;
    }
    
    .ather-hero-buttons .ather-btn {
        padding: 12px 20px;
        min-height: var(--touch-target-min);
        font-size: 0.85rem;
    }
    
    .ather-stat {
        min-width: 70px;
    }
    
    .ather-stat-number {
        font-size: 1.5rem;
    }
    
    .ather-section-title {
        font-size: 1.3rem;
    }
    
    .ather-service-card {
        height: 280px;
    }
    
    .ather-form-card {
        padding: 15px;
    }
}
