/* ==========================================================================
   PREMIUM CHARTERED ACCOUNTANT THEME – SUSHANT KUMAR & ASSOCIATES
   Luxury Corporate Design System v2.0
   ========================================================================== */

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

:root {
    /* Premium Color Palette */
    --primary-color: #0a1628;
    --primary-rgb: 10, 22, 40;
    --accent-color: #16a34a;
    --accent-rgb: 22, 163, 74;
    --accent-light: rgba(22, 163, 74, 0.08);
    --gold: #c9a84c;
    --gold-rgb: 201, 168, 76;
    --gold-light: rgba(201, 168, 76, 0.1);
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --dark-section-bg: #f8fafc;
    --navy-section-bg: #0a1628;
    
    /* Premium Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.16);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
    
    /* Glass & Effects */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(10, 22, 40, 0.06);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Hide Theme Toggle Buttons */
#themeToggle, .theme-toggle {
    display: none !important;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
}

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

a:hover {
    color: var(--primary-color);
}

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

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}
.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-color));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px; /* Increased rounded corners */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #15803d);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.35);
    color: #ffffff;
}

.btn-secondary {
    background-color: rgba(15, 23, 42, 0.08); /* Dark navy opacity */
    color: #0f172a;
}

.btn-secondary:hover {
    background-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #ffffff;
    color: #0f172a;
}

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

/* Header & Sticky Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.sticky {
    background: rgba(15, 23, 42, 0.95); /* Decoupled dark navy background for sticky navbar */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    width: 175px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff; /* Always white over dark backgrounds */
    opacity: 0.85;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--accent-color);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* Mega Menu */
.mega-dropdown {
    position: static;
}

/* Custom Dropdown Menu (Vertical list with chevrons) */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 290px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a i {
    font-size: 0.7rem;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: var(--accent-color);
    padding-left: 24px;
}

.dropdown-menu li a:hover i {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Legacy mega-menu styles removed — now using .dropdown-menu */

/* Right Nav Controls */
.right-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle, .theme-toggle, .mobile-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #ffffff; /* Explicitly white for dark headers */
    opacity: 0.85;
    transition: var(--transition);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover, .theme-toggle:hover {
    color: var(--accent-color);
    opacity: 1;
}

.mobile-toggle {
    display: none;
}

/* Search Bar Dropdown Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
}

.search-form-container {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    color: #ffffff;
    padding: 10px 0;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 200px;
    padding-bottom: 140px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(10, 22, 40, 0.88) 50%, rgba(10, 22, 40, 0.95)), url('../assets/images/hero.png') no-repeat center center / cover;
    color: #ffffff;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 40%, rgba(22, 163, 74, 0.04) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.75rem; /* Large 60px Hero Heading */
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85); /* Readability contrast over dark bg */
    margin-bottom: 40px;
    max-width: 580px;
}

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

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badges span i {
    color: var(--gold);
}

/* CSS Rotating Text */
.rotating-words {
    display: inline-block;
    position: relative;
    height: 1.2em;
    min-width: 480px; /* Increased to prevent clipping */
    overflow: hidden;
    vertical-align: bottom;
    color: var(--accent-color);
    font-weight: 800;
}

@media (max-width: 768px) {
    .rotating-words {
        min-width: 320px;
    }
}

.rotating-words span {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: max-content;
    animation: rotateWords 9s infinite;
}

.rotating-words span:nth-child(1) { animation-delay: 0s; }
.rotating-words span:nth-child(2) { animation-delay: 3s; }
.rotating-words span:nth-child(3) { animation-delay: 6s; }

@keyframes rotateWords {
    0% { opacity: 0; transform: translateY(30px); }
    3% { opacity: 1; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(0); }
    33% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 10;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    50% { opacity: 0; top: 16px; }
    100% { opacity: 1; top: 6px; }
}

/* Hero Stats Panel */
.hero-stats-panel.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-stat-item {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.hero-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Homepage About Section */
.home-about-section {
    padding: 100px 0;
    background-color: var(--dark-section-bg);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.home-about-image-col {
    position: relative;
}

.home-about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: 24px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .exp-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

.home-about-content-col .tagline {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.home-about-content-col h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.signature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.sig-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.sig-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sig-font {
    font-family: 'Poppins', cursive;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
    opacity: 0.85;
}

/* Core Values Section */
.values-section {
    background-color: var(--bg-color);
}

.new-visual-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.new-visual-section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: auto;
    display: block;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

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

/* Services Page & Service Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: rotate(5deg);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
}

.service-card-link:hover {
    gap: 12px;
}

/* Timeline/Process Section */
.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    margin: 50px 0 30px;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color) 50%, transparent);
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    z-index: 2;
    padding: 0;
    width: 100%;
}

.timeline-item::after {
    display: none;
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.timeline-step {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--accent-color);
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 16px;
    display: inline-block;
    width: fit-content;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .timeline::after {
        display: none;
    }
    .timeline-item {
        left: 0 !important;
    }
    .timeline-content {
        text-align: left;
    }
    .timeline-step {
        margin: 0 0 12px 0;
    }
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #0a1628, #132240);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent 60%);
    pointer-events: none;
}

.stats-section h2, .stats-section h3 {
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Industries Cards */
.industry-card {
    text-align: center;
    border-radius: 20px !important;
    padding: 32px 24px !important;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 163, 74, 0.2);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition);
    display: inline-block;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px; /* Increased rounded corners */
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust dynamically if needed */
}

/* Testimonials / Swiper Container */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 28px;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.25);
}

.testimonial-slide {
    animation: fadeEffect 0.6s ease-in-out forwards;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Page Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.info-details a:hover {
    color: var(--accent-color);
}

.map-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px; /* Increased rounded corners */
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 4px var(--accent-light);
}

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

/* Floating Contact & Call Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.btn-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-float:hover {
    transform: scale(1.1);
}

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

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

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

.btn-phone:hover {
    box-shadow: 0 8px 20px rgba(10, 158, 116, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 160px; /* Positioned above floating actions to prevent overlap */
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color); /* Green background */
    color: #ffffff; /* White arrow */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #ffffff;
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Modal Popup Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(-30px);
    transition: var(--transition);
}

.modal.active .modal-dialog {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.25rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Footer styling */
.main-footer {
    background-color: #0b0f19; /* Solid Dark Navy Footer */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer h2, .main-footer h3, .main-footer h4, .main-footer h5 {
    color: #ffffff;
}

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

.footer-about img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent-color));
    margin-top: 8px;
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-links li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.92rem;
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* Page Headers (Subpages) */
.page-header {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.94)), url('../assets/images/hero.png') no-repeat center center / cover;
    padding: 96px 0 48px; /* Reduced vertical space by 40-50% */
    color: #ffffff;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    color: #ffffff;
    font-size: 3.5rem; /* Larger 56px page title */
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumbs li {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breadcrumbs li a {
    color: var(--accent-color);
    font-weight: 600;
}

.breadcrumbs li a:hover {
    color: #ffffff;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs li:last-child::after {
    display: none;
}

/* About Page Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
}

.about-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-profile-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.about-text-col h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.about-lead {
    font-size: 1.125rem; /* Premium 18px body text */
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-color);
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-card.glass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    border-radius: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-card.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.25);
}

.about-card h3 {
    margin-bottom: 32px;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 12px;
    color: var(--primary-color);
}

.foundation-item {
    margin-bottom: 24px;
}

.foundation-item:last-child {
    margin-bottom: 0;
}

.foundation-item h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foundation-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.value-card-about.glass-card {
    padding: 36px 32px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card-about.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.value-card-about.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.25);
}

.value-card-about.glass-card:hover::before {
    opacity: 1;
}

.value-card-about h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-card-about h3 i {
    color: var(--accent-color);
}

.value-card-about p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }
    .about-image-col {
        display: flex;
        height: 100%;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-image-col {
        display: flex;
        height: 400px;
    }
    .about-card.glass-card {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .about-image-col {
        height: 280px;
    }
}

/* About Page Timeline Journey */
.timeline-journey {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-journey::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.journey-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 0 0 6px var(--bg-color), var(--shadow-sm);
    z-index: 2;
}

.journey-card {
    width: 42%;
    padding: 30px !important;
    border-radius: 20px !important;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.2);
}

.journey-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.journey-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-journey::before {
        left: 20px;
    }
    
    .journey-item {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 50px;
    }
    
    .journey-badge {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .journey-card {
        width: 100%;
    }
}

/* Team Card Styles */
.team-card {
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.25);
}

.team-card:hover i, .team-card:hover img {
    transform: scale(1.05);
}

.team-card i, .team-card img {
    transition: var(--transition);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Resources Page Elements */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-tag {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.tag-news { background: rgba(10, 158, 116, 0.1); color: var(--accent-color); }
.tag-guide { background: rgba(var(--primary-rgb), 0.08); color: var(--primary-color); }
.tag-update { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.doc-download-list {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.doc-item:last-child {
    border-bottom: none;
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.doc-name h4 {
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.doc-name span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.page-transition.loaded {
    transform: translateY(-100%);
}

/* Accessibility — Focus Visible States */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible, a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3, .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mega-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 99;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Ensure navigation links are dark colored over the white mobile menu background */
    .nav-menu .nav-link {
        color: var(--text-color) !important;
        opacity: 0.9;
        display: block;
        width: 100%;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-color) !important;
    }

    .mobile-toggle {
        display: block;
        z-index: 100;
    }

    /* Ensure mobile toggle icon is dark colored when menu is open so it remains visible */
    .nav-menu.active ~ .right-nav .mobile-toggle {
        color: var(--text-color) !important;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 20px;
        transform: none;
        display: none;
        min-width: unset;
    }

    .dropdown-menu li a {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: none;
        color: var(--text-color);
    }

    .dropdown-menu li a i {
        display: none;
    }

    .dropdown.active .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .mega-dropdown .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: none;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        padding: 10px 0 0 20px;
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    .right-nav .btn {
        display: none; /* Hide top CTA on small screens */
    }

    /* Ensure homepage about section stacks vertically on mobile */
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
        right: auto;
    }

    .right-item {
        left: 0%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .grid-4, .grid-3, .resource-grid, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .form-group-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 140px;
    }
    .right-nav {
        gap: 10px;
    }
}
