* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    scroll-behavior: smooth;
    line-height: 1.5;
}

/* NAVY BLUE DOMINANT, GOLDEN-MILK ACCENTS - refined professional palette */
:root {
    --navy-deep: #071b2f;
    --navy: #0a2540;
    --navy-dark: #041b2c;
    --navy-light: #1f4a6e;
    --golden-milk: #e9c46a;
    --golden-deep: #d4af37;
    --golden-soft: #f7e5b5;
    --white: #ffffff;
    --off-white: #fafcff;
    --gray-light: #eef2f6;
    --text-dark: #0a1927;
    --text-muted: #2c3e50;
    --shadow-sm: 0 10px 30px -12px rgba(0,0,0,0.08);
    --shadow-hover: 0 25px 35px -16px rgba(0,0,0,0.15);
    --shadow-gold: 0 20px 35px -12px rgba(233,196,106,0.2);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5.5rem 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.3px;
    font-family: 'Playfair Display', serif;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--golden-milk);
    border-radius: 4px;
}

/* refined buttons */
.btn-solid {
    background: var(--navy);
    color: white;
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.btn-solid:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(10,37,64,0.2);
}

.btn-getintouch {
    background: var(--navy);
    color: #ffffff !important;
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgba(233,196,106,0.3);
}
.btn-getintouch i {
    margin-right: 6px;
    transition: transform 0.2s;
}
.btn-getintouch:hover {
    background: var(--golden-milk);
    color: var(--navy-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
    border-color: var(--golden-milk);
}
.btn-getintouch:hover i {
    transform: translateX(4px);
    color: var(--navy-dark);
}

.btn-consult {
    background: transparent;
    border: 2px solid var(--golden-milk);
    color: #ffffff !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-consult:hover {
    background: var(--golden-milk);
    color: var(--navy-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(233,196,106,0.3);
}

/* Header & Navigation */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(10,37,64,0.06);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.logo-img img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}
.logo-text {
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.4px;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}
.logo-text span {
    color: var(--golden-milk);
    font-weight: 800;
}
.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--navy);
    transition: 0.2s;
    position: relative;
}
.nav-links a:not(.btn-getintouch):not(.btn-home):after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--golden-milk);
    transition: 0.25s ease;
}
.nav-links a:not(.btn-getintouch):not(.btn-home):hover:after {
    width: 100%;
}
.btn-home {
    background: var(--navy);
    color: #ffffff !important;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(233,196,106,0.3);
}
.btn-home:hover {
    background: var(--golden-milk);
    color: var(--navy-dark) !important;
    transform: translateY(-2px);
}
.dropdown {
    position: relative;
}
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -10px;
    background: white;
    min-width: 220px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 100;
    border: 1px solid rgba(10,37,64,0.08);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 120%;
}
.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.8rem;
    color: var(--navy);
    font-weight: 500;
}
.dropdown-menu a:hover {
    background: rgba(233,196,106,0.12);
    color: var(--golden-deep);
    padding-left: 2rem;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(112deg, #071b2f 0%, #0a2a44 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}
.hero h1 .gold-accent {
    color: var(--golden-milk);
}
.hero-badge {
    background: rgba(233,196,106,0.18);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    color: var(--golden-milk);
    font-weight: 600;
}

/* ========== 404 ERROR PAGE STYLES ========== */
.error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 60vh;
}
.error-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 64px;
    padding: 4rem 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(233,196,106,0.3);
    animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--golden-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.error-icon {
    font-size: 5rem;
    color: var(--golden-milk);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}
.error-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.search-box {
    background: #f1f5f9;
    border-radius: 60px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(233,196,106,0.3);
    transition: all 0.3s;
}
.search-box:focus-within {
    border-color: var(--golden-milk);
    box-shadow: 0 0 0 3px rgba(233,196,106,0.2);
    background: white;
}
.search-box input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.search-box button {
    background: var(--navy);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.search-box button:hover {
    background: var(--golden-milk);
    color: var(--navy-dark);
}
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.btn-primary {
    background: var(--navy);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.btn-primary:hover {
    background: var(--golden-milk);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(233,196,106,0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--golden-milk);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.btn-secondary:hover {
    background: var(--golden-milk);
    color: var(--navy-dark);
    transform: translateY(-3px);
}
.helpful-links {
    border-top: 1px solid rgba(233,196,106,0.2);
    padding-top: 1.5rem;
    margin-top: 1rem;
}
.helpful-links h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}
.links-grid a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.links-grid a i {
    color: var(--golden-milk);
    font-size: 0.8rem;
}
.links-grid a:hover {
    color: var(--golden-deep);
    transform: translateX(3px);
}

/* Service cards - Enhanced for Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,196,106,0.2);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--golden-milk), var(--golden-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--golden-milk);
}
.service-icon {
    font-size: 2.8rem;
    color: var(--golden-milk);
    margin-bottom: 1.2rem;
}
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}
.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--navy-light);
}
.service-features li i {
    color: var(--golden-milk);
    font-size: 0.75rem;
    width: 16px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.service-link i {
    transition: transform 0.2s;
}
.service-link:hover {
    color: var(--golden-deep);
}
.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section - Services Page */
.process-section {
    background: linear-gradient(135deg, #f5f7fc 0%, #ffffff 100%);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.process-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 28px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,196,106,0.15);
}
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--golden-milk), var(--golden-deep));
    color: var(--navy-dark);
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}
.process-card h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}
.process-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section - Services Page */
.cta-section {
    background: linear-gradient(112deg, #071b2f 0%, #0a2a44 100%);
    color: white;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}
.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(233,196,106,0.2);
    padding-bottom: 1rem;
}
.tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
}
.tab-btn:hover {
    color: var(--golden-deep);
    background: rgba(233,196,106,0.1);
}
.tab-btn.active {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 12px rgba(10,37,64,0.2);
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(120deg, #f9fbfd 0%, #ffffff 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border-bottom: 3px solid var(--golden-milk);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.stat-card i {
    font-size: 2.8rem;
    color: var(--golden-milk);
    margin-bottom: 1rem;
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
}

/* ========== ENHANCED VISION & MISSION SECTION ========== */
.vision-mission {
    background: linear-gradient(135deg, #f5f7fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.vision-mission::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,196,106,0.08) 0%, rgba(233,196,106,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.vision-mission::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10,37,64,0.05) 0%, rgba(10,37,64,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.vm-enhanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}
.vm-enhanced-card {
    background: white;
    border-radius: 40px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(233,196,106,0.15);
}
.vm-enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--golden-milk);
}
.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #fff6e5, #fff);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--golden-deep);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(233,196,106,0.4);
    transition: all 0.3s;
}
.vm-enhanced-card:hover .vm-icon {
    background: var(--golden-milk);
    color: var(--navy-dark);
    transform: scale(1.02) rotate(3deg);
}
.vm-enhanced-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}
.vm-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.vm-feature-list {
    list-style: none;
    padding: 0;
}
.vm-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--navy-light);
}
.vm-feature-list li i {
    color: var(--golden-milk);
    font-size: 1rem;
    width: 20px;
}
.vm-stats {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid rgba(233,196,106,0.3);
    padding-top: 1.2rem;
}
.vm-stat-item {
    text-align: center;
    flex: 1;
}
.vm-stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--golden-deep);
}
.vm-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Board of Directors */
.board-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.board-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}
.board-card {
    background: white;
    border-radius: 32px;
    padding: 2rem 1.8rem;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,196,106,0.25);
}
.board-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--golden-milk);
}
.board-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--golden-milk);
}
.board-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}
.board-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--golden-deep);
    background: rgba(233,196,106,0.12);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}
.board-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}
.board-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.board-social a {
    width: 36px;
    height: 36px;
    background: rgba(10,37,64,0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s;
    border: 1px solid rgba(233,196,106,0.3);
    text-decoration: none;
}
.board-social a:hover {
    background: var(--golden-milk);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* ========== CONTACT PAGE SPECIFIC STYLES ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,196,106,0.2);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--golden-milk);
}
.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #fff6e5, #fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--golden-deep);
    border: 1px solid rgba(233,196,106,0.4);
}
.info-header h3 {
    font-size: 1.4rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}
.info-detail {
    padding-left: 1rem;
    border-left: 3px solid var(--golden-milk);
}
.info-detail p {
    margin: 0.6rem 0;
    color: var(--text-muted);
    line-height: 1.6;
}
.info-detail i {
    width: 28px;
    color: var(--golden-milk);
}
.business-hours {
    margin-top: 1rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 20px;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
}
.hour-item:last-child {
    border-bottom: none;
}

.map-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,196,106,0.2);
    margin-bottom: 2rem;
}
.map-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--golden-milk);
}
.map-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.map-container {
    width: 100%;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(233,196,106,0.3);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.address-text {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 20px;
}
.address-text p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.7rem 0;
}
.address-text i {
    width: 25px;
    color: var(--golden-milk);
}

.form-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,196,106,0.2);
}
.form-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--golden-milk);
}
.form-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fefefe;
}
.form-group textarea {
    border-radius: 28px;
    resize: vertical;
    min-height: 120px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--golden-milk);
    box-shadow: 0 0 0 3px rgba(233,196,106,0.2);
}
.submit-btn {
    background: var(--navy);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.submit-btn:hover {
    background: var(--golden-milk);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(233,196,106,0.3);
}

.contact-section {
    background: linear-gradient(115deg, #ffffff 0%, #fefaf0 100%);
}
.contact-form-card, .contact-map-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    border: 1px solid rgba(233,196,106,0.2);
}
.contact-form-card:hover, .contact-map-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.form-title i {
    color: var(--golden-milk);
}
.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(233,196,106,0.05);
}
.address-item i {
    font-size: 1.5rem;
    color: var(--golden-milk);
    min-width: 32px;
}
.contact-badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    display: inline-block;
    margin-right: 0.8rem;
    box-shadow: var(--shadow-sm);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(120deg, #f9fbfd 0%, #ffffff 100%);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.faq-item {
    background: white;
    padding: 1.8rem;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s;
    border-left: 4px solid var(--golden-milk);
}
.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}
.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.faq-question i {
    color: var(--golden-milk);
}
.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 1.8rem;
}

/* Footer */
.footer {
    background: var(--navy-deep);
    color: #cbd5e6;
    padding: 3rem 0 1.5rem;
    position: relative;
}
.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-col h4 {
    color: var(--golden-milk);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--golden-milk);
}
.footer-col p, .footer-col a {
    color: #cbd5e6;
    text-decoration: none;
    line-height: 1.7;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-col a:hover {
    color: var(--golden-milk);
    transform: translateX(5px);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    background: rgba(255,255,255,0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #cbd5e6;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--golden-milk);
    color: var(--navy-deep);
}
.footer-bottom {
    border-top: 1px solid rgba(233,196,106,0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.newsletter {
    display: flex;
    margin-top: 1rem;
}
.newsletter input {
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 40px 0 0 40px;
    color: white;
    outline: none;
    width: 70%;
}
.newsletter button {
    background: var(--golden-milk);
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 0 40px 40px 0;
    color: var(--navy);
    font-weight: bold;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 1.6rem;
        gap: 1.2rem;
        border-radius: 0 0 1.5rem 1.5rem;
    }
    .nav-links.show {
        display: flex;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        width: 100%;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .mobile-menu-btn {
        display: block;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .vm-enhanced-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .service-tabs {
        gap: 0.5rem;
    }
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    /* 404 responsive */
    .error-content {
        padding: 2rem 1.5rem;
    }
    .error-code {
        font-size: 5rem;
    }
    .error-title {
        font-size: 1.5rem;
    }
    .action-buttons {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vm-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}