

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 35px 60px -12px rgba(0, 0, 0, 0.4);
    --blur: blur(20px) saturate(180%);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.85;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 2rem;
    font-size: 0.85rem;
}

.header-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.header-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.header-contact .separator {
    color: rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active::before {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.nav-cta::before {
    display: none;
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.75rem 0;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    list-style: none;
    z-index: 1001;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a::before {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--white) !important;
    padding-left: 1.8rem;
}

/* About Hero */
.about-hero {
    padding: 10rem 0 4rem;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 50%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
}

.about-hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-hero-content p:last-child {
    margin-bottom: 0;
}

/* Founder Info */
.founder-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: #000000;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
    pointer-events: none;
    z-index: 1;
}

.why-choose .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 40%, #e8d5a3 60%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f5f0e8;
    font-family: 'Sora', sans-serif;
}

.why-choose .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid > .feature-card {
    flex: 1 1 0;
    min-width: 0;
}

@media (max-width: 600px) {
    .features-grid {
        flex-wrap: wrap;
    }
    .features-grid > .feature-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

.feature-card {
    padding: 1.5rem 1.25rem;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-family: 'Sora', sans-serif;
}

.feature-card p {
    line-height: 1.6;
    font-size: 0.9rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card-1 {
    text-align: left;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(15, 23, 42, 0.85) 60%);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-left: 4px solid #10b981;
    position: relative;
}

.feature-card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-card-1 .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.feature-card-1:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.feature-card-1 p { color: #a7f3d0; }

.feature-card-2 {
    text-align: center;
    background: transparent;
    border-radius: 24px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-card-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card-2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2), inset 0 0 40px rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.7);
}

.feature-card-2 .feature-icon {
    background: transparent;
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 16px;
    margin: 0 auto 1rem;
}

.feature-card-2:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.4);
}

.feature-card-2 p { color: #c7d2fe; }

.feature-card-3 {
    text-align: center;
    background: linear-gradient(160deg, #1e3a5f 0%, #0f172a 50%, #1a1a2e 100%);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card-3::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    border-radius: 0 0 4px 4px;
}

.feature-card-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
}

.feature-card-3 .feature-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 14px;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25);
}

.feature-card-3:hover .feature-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 12px 36px rgba(251, 191, 36, 0.5);
}

.feature-card-3 p { color: #fde68a; }

.feature-card-4 {
    text-align: left;
    background: rgba(10, 10, 20, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card-4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
}

.feature-card-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    border-color: rgba(236, 72, 153, 0.5);
}

.feature-card-4 .feature-icon {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.feature-card-4:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: 0 0 32px rgba(236, 72, 153, 0.5), 0 0 64px rgba(139, 92, 246, 0.3);
}

.feature-card-4 p { color: #f9a8d4; }

/* About Details Section */
.about-details {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
    color: var(--white);
}

.about-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.about-cta {
    padding: 4rem 0;
    background: var(--gradient-2);
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.about-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Sora', sans-serif;
}

.about-cta p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

/* Content is visible immediately — no scroll-triggered pop-in */
.fade-in {
    opacity: 1;
    transform: none;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.5), transparent);
    pointer-events: none;
}

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

.footer-brand img {
    height: 30px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Sora', sans-serif;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0.6;
    font-size: 0.95rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: var(--blur);
    z-index: 1050;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu > ul > li > a {
    display: block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-menu > ul > li > a:hover {
    color: #f5f0e8;
}

.mobile-menu .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.mobile-menu .mobile-dropdown-toggle:hover {
    color: #f5f0e8;
}

.mobile-dropdown-toggle .mobile-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-submenu.open {
    max-height: 400px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-submenu a:hover {
    color: #f5f0e8 !important;
    padding-left: 0.5rem;
}

.mobile-menu .mobile-cta {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        pointer-events: auto;
    }

    .nav-links {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .logo {
        height: 28px;
    }

    .logo img {
        max-width: 140px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-hero {
        padding: 8rem 0 3rem;
    }

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

/* Google Maps Section */
.location-section {
    padding: 4rem 0;
    background: var(--dark);
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

.location-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.location-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 50%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
}

.location-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    background: var(--dark-light);
    position: relative;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.map-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Areas We Serve Section */
.areas-served-section {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        #000000;
    position: relative;
}

.areas-served-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.areas-served-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 40%, #e8d5a3 60%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f5f0e8;
    font-family: 'Sora', sans-serif;
}

.areas-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c4a96a, #e8d5a3);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.areas-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.areas-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.areas-regions {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 2.2;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.areas-dot {
    color: rgba(196, 169, 106, 0.4);
    margin: 0 0.15rem;
}

.areas-cta-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.85rem;
}

.areas-cta-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.areas-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #c4a96a, #a8894e);
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.areas-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 169, 106, 0.3);
}

.areas-cta-btn-outline {
    background: transparent;
    color: #c4a96a;
    border: 2px solid rgba(196, 169, 106, 0.4);
}

.areas-cta-btn-outline:hover {
    background: rgba(196, 169, 106, 0.1);
    border-color: #c4a96a;
    box-shadow: 0 8px 24px rgba(196, 169, 106, 0.15);
}

.areas-statement .highlight {
    color: #c4a96a;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        #000000;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.faq-section .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 40%, #e8d5a3 60%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f5f0e8;
    font-family: 'Sora', sans-serif;
}

.faq-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #c4a96a;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: #c4a96a;
    color: #c4a96a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-answer-inner p {
    margin: 0 0 0.75rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-question:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1rem;
        font-size: 0.92rem;
    }
}

@media print {
    .faq-answer {
        max-height: none !important;
        overflow: visible !important;
    }

    .faq-answer[hidden] {
        display: block !important;
    }

    .faq-icon {
        display: none;
    }

    .faq-item {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: #fff;
    }

    .faq-question {
        color: #000;
    }

    .faq-answer-inner {
        color: #333;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
