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

:root {
    --primary: #3b2f3a;
    --secondary: #5b4a58;
    --accent: #c9876b;
    --light: #e8f4fd;
    --white: #ffffff;
    --dark: #0d1f33;
    --gray: #f5f8fc;
    --text: #333344;
    --light-text: #6b7a99;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 31, 51, 0.97);
    padding: 14px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(46, 123, 196, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-text span:last-child {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hamburger {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(46, 123, 196, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(240, 165, 0, 0.08) 0%, transparent 60%);
}

.menu-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.menu-content a {
    display: block;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    letter-spacing: -1px;
    line-height: 1.1;
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    padding: 5px 0;
}

.fullscreen-menu.active .menu-content a {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-content a:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-menu.active .menu-content a:nth-child(2) {
    transition-delay: 0.15s;
}

.fullscreen-menu.active .menu-content a:nth-child(3) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .menu-content a:nth-child(4) {
    transition-delay: 0.25s;
}

.fullscreen-menu.active .menu-content a:nth-child(5) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-content a:nth-child(6) {
    transition-delay: 0.35s;
}

.menu-content a:hover {
    color: white;
    letter-spacing: 2px;
}

.menu-content a span {
    color: var(--accent);
}

.menu-contact-info {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}

.fullscreen-menu.active .menu-contact-info {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact-info a {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    letter-spacing: 1px !important;
    font-weight: 500 !important;
    transform: none !important;
    padding: 0 !important;
}

.menu-contact-info a:hover {
    color: var(--accent) !important;
    letter-spacing: 1px !important;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c9876b 0%, #3b2f3a 50%, #2a2229 100%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../img/hero1.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 123, 196, 0.2) 0%, transparent 70%);
}

.hero-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 123, 196, 0.15);
    border: 1px solid rgba(46, 123, 196, 0.3);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 900;
    color: white;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    display: block;
}

.hero-title .blue-text {
    color: var(--secondary);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 70px;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #4b3d49);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(46, 123, 196, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(46, 123, 196, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Service Preview Cards */
.hero-service-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-service-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero-service-card:hover {
    background: rgba(46, 123, 196, 0.2);
    border-color: rgba(46, 123, 196, 0.5);
    transform: translateY(-4px);
}

.hero-card-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-card-text span:first-child {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.hero-card-text span:last-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.hero-image-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark) 0%, transparent 40%, transparent 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ==================== WHY CHOOSE US ==================== */
.why-us {
    padding: 110px 5%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.why-us-left .section-desc {
    font-size: 17px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-box {
    background: var(--gray);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(46, 123, 196, 0.2);
    background: white;
    box-shadow: 0 10px 40px rgba(46, 123, 196, 0.1);
    transform: translateY(-4px);
}

.feature-box:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(46, 123, 196, 0.12), rgba(240, 165, 0, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.feature-box h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.6;
}

.why-us-right {
    position: relative;
}

.why-us-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.why-us-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.img-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.img-badge-text span:first-child {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.img-badge-text span:last-child {
    font-size: 12px;
    color: var(--light-text);
    font-weight: 500;
}

/* ==================== STATS ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(46,123,196,0.08)"/><circle cx="80" cy="80" r="30" fill="rgba(240,165,0,0.06)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.stat-number .stat-plus {
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== SERVICE STORY ==================== */
.service-story {
    padding: 110px 5%;
    background: var(--gray);
    position: relative;
}

.story-header {
    text-align: center;
    margin-bottom: 70px;
}

.story-slides {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.story-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    animation: slideIn 0.6s ease;
}

.story-slide.active {
    display: grid;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-content {
    background: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(46, 123, 196, 0.08);
    line-height: 1;
    margin-bottom: -20px;
    font-style: italic;
}

.slide-category {
    display: inline-block;
    background: rgba(46, 123, 196, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.slide-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.slide-desc {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.slide-features {
    list-style: none;
    margin-bottom: 32px;
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.slide-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    flex-shrink: 0;
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    transition: transform 0.6s ease;
}

.slide-image:hover img {
    transform: scale(1.03);
}

.slide-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 31, 51, 0.3), transparent);
}

/* Story Navigation */
.story-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    align-items: center;
}

.story-tab {
    background: transparent;
    border: 2px solid rgba(26, 58, 92, 0.2);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.story-tab.active,
.story-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ==================== SERVICE AREAS ==================== */
.service-areas {
    padding: 110px 5%;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.areas-list {
    margin-top: 40px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.area-item:hover {
    background: var(--light);
    border-color: rgba(46, 123, 196, 0.2);
    transform: translateX(8px);
}

.area-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.2);
}

.area-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.area-distance {
    margin-left: auto;
    font-size: 12px;
    color: var(--light-text);
    background: var(--gray);
    padding: 3px 10px;
    border-radius: 20px;
}

.areas-right {
    position: sticky;
    top: 100px;
}

.areas-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 28px;
}

.areas-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.areas-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 31, 51, 0.7) 100%);
}

.areas-img-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
}

.areas-img-text h3 {
    font-size: 22px;
    font-weight: 800;
}

.areas-img-text p {
    font-size: 13px;
    opacity: 0.8;
}

.areas-desc {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ==================== TIMELINE SERVICES ==================== */
.timeline-section {
    padding: 110px 5%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.timeline-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 50%, rgba(46, 123, 196, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(240, 165, 0, 0.06) 0%, transparent 50%);
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.timeline-header .section-title {
    color: white;
}

.timeline-header .section-label {
    color: var(--accent);
}

.timeline-header .section-label::before {
    background: var(--accent);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
    border-radius: 3px;
    height: 0%;
    transition: height 0.1s ease;
}

.timeline-item {
    display: flex;
    gap: 30px;
    padding: 0 0 50px 80px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 2px var(--secondary);
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(46, 123, 196, 0.12);
    border-color: rgba(46, 123, 196, 0.3);
    transform: translateY(-3px);
}

.timeline-tag {
    display: inline-block;
    background: rgba(46, 123, 196, 0.2);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: 110px 5%;
    background: var(--gray);
}

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

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(26, 58, 92, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 8px 30px rgba(46, 123, 196, 0.1);
    border-color: rgba(46, 123, 196, 0.2);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.faq-toggle {
    width: 34px;
    height: 34px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
}

.faq-item.open .faq-toggle {
    background: var(--secondary);
    color: white;
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.faq-cities {
    margin-top: 60px;
    text-align: center;
}

.faq-cities h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.city-tag {
    background: white;
    border: 1px solid rgba(46, 123, 196, 0.2);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ==================== WHAT WE DO ==================== */
.what-we-do {
    padding: 110px 5%;
    background: white;
}

.what-header {
    text-align: center;
    margin-bottom: 70px;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
}

.what-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--gray);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.what-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.12);
    border-color: rgba(46, 123, 196, 0.15);
}

.what-card-top {
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.what-card-body {
    padding: 32px 28px;
}

.what-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 123, 196, 0.1), rgba(240, 165, 0, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.what-card:hover .what-card-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.what-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.what-card p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
}

/* ==================== CONTACT ==================== */
.contact-section {
    padding: 110px 5%;
    background: var(--gray);
}

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

.map-container {
    max-width: 1300px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-bottom: 50px;
    position: relative;
}

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

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

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(26, 58, 92, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(46, 123, 196, 0.2);
    box-shadow: 0 10px 40px rgba(46, 123, 196, 0.08);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(46, 123, 196, 0.1), rgba(240, 165, 0, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.contact-info-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--secondary);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    padding: 80px 5% 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(46, 123, 196, 0.05) 0%, transparent 60%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: 900;
}

.footer-brand .footer-logo-text span:first-child {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: white;
}

.footer-brand .footer-logo-text span:last-child {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
}

.footer-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-col ul li a::before {
    content: '›';
    color: var(--accent);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-copyright span {
    color: var(--accent);
}

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

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(46, 123, 196, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 500;
    border: none;
    color: white;
    font-size: 20px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(46, 123, 196, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {

    .why-us-grid,
    .areas-grid,
    .story-slide {
        grid-template-columns: 1fr;
    }

    .story-slide.active {
        display: block;
    }

    .slide-image {
        display: none;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-side {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

    .story-nav {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-service-cards {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }
}