/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f6f3;
    color: #2d2d2d;
    line-height: 1.7;
}

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

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: #1a2a3a;
    color: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}
.logo span {
    color: #c9a84c;
}

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

nav ul li {
    position: relative;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

/* ============================================================
   DROPDOWN MENU - IMPROVED
   ============================================================ */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 240px;
    padding: 8px 0;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 200;
    flex-direction: column;
    gap: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: #2d2d2d;
    font-size: 0.9rem;
    font-weight: 400;
    border-bottom: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    background: transparent;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: #f5f0ea;
    color: #1a2a3a;
    border-left-color: #c9a84c;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* ============================================================
   HERO SECTION - UPDATED
   ============================================================ */
.hero {
    background: linear-gradient(145deg, #0f1a26 0%, #1a2a3a 60%, #2c3e50 100%);
    color: #fff;
    padding: 90px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #f8f6f3;
    clip-path: ellipse(60% 100% at 50% 100%);
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-family: 'Georgia', serif;
}

.hero h1 i {
    color: #c9a84c;
    margin-right: 12px;
}

.hero .tagline {
    font-size: 1.4rem;
    font-weight: 300;
    color: #d4c9b0;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero p {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ============================================================
   BUTTONS - UPDATED
   ============================================================ */
.btn {
    display: inline-block;
    background: #c9a84c;
    color: #1a2a3a;
    padding: 14px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
    letter-spacing: 0.3px;
}

.btn:hover {
    background: #dbb95c;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #c9a84c;
    color: #c9a84c;
    box-shadow: none;
}

/* ============================================================
   SECTION TITLES - UPDATED
   ============================================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2a3a;
    text-align: center;
    font-family: 'Georgia', serif;
    letter-spacing: -0.3px;
}

.section-title span {
    color: #c9a84c;
}

.section-sub {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: #5a6a7a;
    font-size: 1.1rem;
    line-height: 1.8;
}

section {
    padding: 80px 0;
}

/* ============================================================
   SECTION BACKGROUNDS - NEW
   ============================================================ */
.section-white {
    background: #ffffff;
}

.section-cream {
    background: #f8f6f3;
}

.section-dark {
    background: #1a2a3a;
    color: #fff;
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   SERVICE CARDS - COMPLETELY UPDATED
   ============================================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ede8e2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 42, 58, 0.10);
    border-color: #c9a84c;
}

.service-card .icon {
    font-size: 2.4rem;
    color: #c9a84c;
    margin-bottom: 14px;
    display: block;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 0.9rem;
    color: #5a6a7a;
    line-height: 1.6;
}

/* ============================================================
   ABOUT / STATS - COMPLETELY UPDATED
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1a2a3a;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
}

.about-text p {
    color: #5a6a7a;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text .highlight {
    font-weight: 600;
    color: #1a2a3a;
    font-size: 1.1rem;
}

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

.stat-box {
    text-align: center;
    padding: 24px 20px;
    background: #f8f6f3;
    border-radius: 12px;
    border: 1px solid #ede8e2;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #c9a84c;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #c9a84c;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #5a6a7a;
    font-weight: 500;
}

/* ============================================================
   MISSION & VISION - UPDATED
   ============================================================ */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.mv-card {
    padding: 40px 32px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #ede8e2;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.mv-card .mv-icon {
    font-size: 2.2rem;
    color: #c9a84c;
    margin-bottom: 12px;
    display: block;
}

.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.mv-card p {
    color: #5a6a7a;
    line-height: 1.8;
}

.mv-card.mission {
    border-top: 4px solid #1a2a3a;
}

.mv-card.vision {
    border-top: 4px solid #c9a84c;
}

.mv-tagline {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: #1a2a3a;
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.mv-tagline i {
    color: #c9a84c;
    margin-right: 8px;
}

/* ============================================================
   CTA - UPDATED
   ============================================================ */
.cta-box {
    background: linear-gradient(145deg, #1a2a3a 0%, #2c3e50 100%);
    color: #fff;
    padding: 60px 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26, 42, 58, 0.2);
}

.cta-box h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    background: #fff;
    color: #1a2a3a;
    box-shadow: none;
}

.cta-box .btn:hover {
    background: #c9a84c;
    color: #1a2a3a;
}

/* ============================================================
   FOOTER - UPDATED
   ============================================================ */
footer {
    background: #0f1a26;
    color: #c8d0d8;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Georgia', serif;
}

.footer-brand .footer-logo span {
    color: #c9a84c;
}

.footer-brand p {
    margin-top: 6px;
    color: #a8b4be;
}

.footer-brand .tagline {
    margin-top: 12px;
    color: #c9a84c;
    font-weight: 500;
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-links ul li a {
    color: #a8b4be;
    transition: all 0.2s ease;
}

.footer-links ul li a:hover {
    color: #c9a84c;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #c9a84c;
    color: #1a2a3a;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #7a8a9a;
}

/* ============================================================
   SERVICE DETAIL PAGE - NEW STYLES
   ============================================================ */
.service-hero {
    background: linear-gradient(145deg, #0f1a26 0%, #1a2a3a 60%, #2c3e50 100%);
    color: #fff;
    padding: 60px 0;
}

.service-hero h1 {
    font-size: 2.8rem;
    font-family: 'Georgia', serif;
}

.service-hero h1 i {
    color: #c9a84c;
    margin-right: 12px;
}

.service-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-top: 8px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    border-left: 4px solid #c9a84c;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.step-number {
    background: #1a2a3a;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a2a3a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step-content p {
    color: #5a6a7a;
    line-height: 1.8;
}

.deliverables-grid {
    max-width: 850px;
    margin: 0 auto;
    background: #1a2a3a;
    color: #fff;
    padding: 40px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.deliverables-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deliverables-grid i {
    color: #c9a84c;
    font-size: 1rem;
}

.why-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #ede8e2;
}

.why-box p {
    color: #5a6a7a;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0 70px;
    }

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

    nav ul {
        gap: 16px;
        margin-top: 12px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        background: #2c3e50;
        min-width: auto;
        padding: 10px 20px;
        border-radius: 8px;
        margin-top: 4px;
        box-shadow: none;
        transform: none;
        left: 0;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
        padding: 8px 16px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #c9a84c;
        border-left-color: #c9a84c;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .step-item {
        flex-direction: column;
        padding: 20px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .why-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 50px 0 60px;
    }

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

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

    .btn {
        padding: 12px 32px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-box h2 {
        font-size: 1.4rem;
    }

    .mv-card {
        padding: 24px 20px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }
}
/* ============================================================
   CAROUSEL HERO
   ============================================================ */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 500px;
    max-height: 700px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
}

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

/* Text Slide (Slide 1) */
.carousel-slide[data-slide="0"] {
    background: linear-gradient(135deg, #0f1a26 0%, #1a2a3a 50%, #2c3e50 100%);
}

/* Overlay for all slides */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Dark overlay for image slides */
.image-overlay {
    background: rgba(15, 26, 38, 0.7);
}

/* Text slide overlay */
.text-overlay {
    background: transparent;
}

/* Content positioning */
.carousel-content {
    color: #fff;
    max-width: 700px;
    padding: 20px 0;
}

/* Image slides content - slightly different positioning */
.image-content {
    max-width: 650px;
}

/* Badge */
.carousel-content .hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.carousel-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.carousel-content .hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.carousel-content .hero-tagline {
    font-size: 1rem;
    color: #c9a84c;
    font-weight: 500;
    margin-bottom: 28px;
}

.carousel-content .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-content .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-content .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c9a84c;
    color: #c9a84c;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(201, 168, 76, 0.3);
    border-color: #c9a84c;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: #c9a84c;
    width: 32px;
    border-radius: 6px;
}

/* ============================================================
   RESPONSIVE - CAROUSEL
   ============================================================ */
@media (max-width: 992px) {
    .hero-carousel {
        height: 80vh;
        min-height: 450px;
        max-height: 600px;
    }

    .carousel-content h1 {
        font-size: 2.8rem;
    }

    .carousel-content .hero-lead {
        font-size: 1rem;
    }

    .carousel-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 400px;
        max-height: 500px;
    }

    .carousel-content {
        text-align: center;
        max-width: 100%;
        padding: 0 16px;
    }

    .carousel-content h1 {
        font-size: 2.2rem;
    }

    .carousel-content .hero-lead {
        margin: 0 auto 12px;
        max-width: 100%;
    }

    .carousel-content .hero-tagline {
        margin-bottom: 20px;
    }

    .carousel-content .hero-buttons {
        justify-content: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }

    .image-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 60vh;
        min-height: 350px;
        max-height: 450px;
    }

    .carousel-content h1 {
        font-size: 1.8rem;
    }

    .carousel-content .hero-lead {
        font-size: 0.9rem;
    }

    .carousel-content .hero-tagline {
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .carousel-content .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}