/* style.css */
:root {
    /* Brand Colors */
    --primary-color: #18aadf;
    /* Brand Blue */
    --secondary-color: #ccb181;
    /* Brand Gold/Sand */

    /* Neutral Colors */
    --dark-bg: #192b42;
    --dark-nav: #192b42;
    --brand-navy: #192b42;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #ccb181 0%, #a88d5c 100%);
    --blue-gradient: linear-gradient(135deg, #18aadf 0%, #0d84b0 100%);

    /* Typography */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Montserrat', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: var(--shadow-md);
}

.box-shadow {
    box-shadow: var(--shadow-lg);
}

.overflow-hidden {
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--dark-bg);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: #b59b6c;
    /* Slightly darker gold */
    color: var(--dark-bg);
    border-color: #b59b6c;
}

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline-dark:hover {
    background: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
}

/* Topbar */
.topbar {
    background-color: var(--white);
    /* White background */
    color: var(--brand-navy);
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.topbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-left a {
    color: var(--brand-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.topbar-left a i {
    background-color: var(--brand-navy);
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
}

.topbar-left a:hover {
    color: var(--secondary-color);
}

.topbar-socials {
    display: flex;
    gap: 15px;
}

.topbar-socials a {
    color: var(--brand-navy);
    background-color: rgba(25, 43, 66, 0.05);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.85rem;
    text-decoration: none;
}

.topbar-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Navbar */
.navbar {
    background-color: #192b42;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.mobile-actions-bar {
    display: none;
    background-color: #f8f9fa;
    /* Light gray */
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-actions-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 70px; /* Increased for better visibility */
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    /* white text for dark navbar */
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.nav-links a i {
    font-size: 0.7rem;
    color: var(--text-main);
}

.nav-links a:hover,
.nav-links li:hover>a {
    color: var(--primary-color);
}

.nav-links a:hover i,
.nav-links li:hover>a i {
    color: var(--primary-color);
}

/* Dropdown Menu CSS */
.nav-links>li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1050;
    list-style: none;
    padding: 10px 0;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    display: block;
    width: 100%;
}

.dropdown-menu li a:hover {
    background-color: rgba(24, 170, 223, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Section Common */
.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--dark-nav);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-accent-line {
    width: 60px;
    height: 2px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero-outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-hero-outline-white:hover {
    background: #ffffff;
    color: #0f172a;
}

.btn-hero-solid-gold {
    background: #f0b71c;
    color: #0f172a;
    border: 2px solid #f0b71c;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-hero-solid-gold:hover {
    background: transparent;
    color: #f0b71c;
}

/* About Section Diagram Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-diagram {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
}

.diag-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.diag-path {
    fill: none;
    stroke: #ccc;
    stroke-width: 2;
    stroke-dasharray: 4, 4;
}

.diag-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.diag-node span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.diag-icon {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(100, 60, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Base icon sizing for smaller boxes */
.diag-icon:not(.center-icon) {
    width: 80px;
    height: 80px;
    border: 6px solid #8e6211;
    /* brown/gold border */
}

.diag-icon i {
    font-size: 2rem;
    color: #666;
}

/* Center Box */
.node-center {
    top: 40%;
    left: 50%;
}

.center-icon {
    width: 180px;
    height: 180px;
    border: 8px solid #ffcc00;
    /* yellow border */
    flex-direction: column;
    text-align: center;
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.center-icon img {
    max-width: 50px;
    margin-bottom: 5px;
}

.center-icon h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #333;
}

.center-icon p {
    font-size: 0.6rem;
    color: #666;
    line-height: 1.2;
}

/* Positioning Smaller Boxes (approximate percentages based on 500x500 box) */
.node-l {
    top: 35%;
    left: 15%;
}

.node-r {
    top: 35%;
    left: 85%;
}

.node-bl {
    top: 68%;
    left: 25%;
}

.node-bm {
    top: 85%;
    left: 50%;
}

.node-br {
    top: 68%;
    left: 75%;
}

/* Text Content Styling */
.about-text-content {
    padding-left: 20px;
}

.title-divider {
    width: 50px;
    height: 4px;
    background: #ffcc00;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.about-text-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-yellow {
    background: #ffcc00;
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn-yellow:hover {
    background: #e6b800;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text-content {
        padding-left: 0;
        text-align: center;
    }

    .title-divider {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 500px) {
    .node-l {
        left: 10%;
    }

    .node-r {
        left: 90%;
    }

    .diag-icon:not(.center-icon) {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }

    .diag-icon i {
        font-size: 1.5rem;
    }

    .center-icon {
        width: 140px;
        height: 140px;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(24, 170, 223, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-nav);
}

.service-card p {
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: var(--blue-gradient);
    padding: 80px 0;
    color: var(--white);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-action .btn {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-action .btn:hover {
    background: transparent;
    color: var(--white);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(204, 177, 129, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(204, 177, 129, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info p,
.contact-info a {
    color: var(--dark-nav);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-map iframe {
    transition: var(--transition);
}

.contact-map:hover iframe {
    filter: brightness(0.9);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #94a3b8;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================================================
   Service Page Styles
========================================================================= */

/* Service Hero Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 5, 20, 0.85) 0%, rgba(0, 10, 30, 0.4) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    max-width: 900px;
}

.hero-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.hero-label span.highlight-text {
    color: var(--secondary-color);
}

.hero-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    /* Regular for first part */
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1px;
    font-family: var(--font-sans);
}

.hero-title span {
    font-weight: 700;
    /* Bold for highlighted part */
    color: var(--secondary-color);
}

.hero-divider {
    width: 60px;
    height: 3px;
    background-color: var(--white);
    border: none;
    margin: 0 0 30px 0;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    /* More squared like the reference */
}

.btn-hero-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--dark-nav);
}

.btn-hero-solid {
    background: var(--secondary-color);
    color: var(--dark-nav);
    border: 2px solid var(--secondary-color);
}

.btn-hero-solid:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Swiper custom navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    transform: scale(0.7);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--secondary-color) !important;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1;
}

/* Residences Grid */
.residences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.residence-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.residence-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.residence-card:hover img {
    transform: scale(1.08);
    /* Zoom effect */
}

.residence-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

/* Packages Grid */
.bg-dark {
    background-color: var(--dark-nav);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: flex-start;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-img {
    position: relative;
    height: 200px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-name {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--dark-nav);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.package-card.featured-package .package-name {
    background: var(--primary-color);
    color: var(--white);
}

.package-content {
    padding: 40px 30px 30px;
    color: var(--text-main);
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.package-card.featured-package .package-features i {
    color: var(--primary-color);
}

.text-dark {
    color: var(--dark-nav) !important;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.w-100 {
    width: 100%;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

/* Line connecting steps on desktop */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        /* Aligned with icon center */
        right: -15px;
        width: 30px;
        height: 2px;
        background: var(--secondary-color);
        z-index: 1;
    }
}

.step-number {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(204, 177, 129, 0.2);
    /* Faded gold */
    line-height: 1;
    font-family: var(--font-serif);
    z-index: 0;
}

.step-card {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
}

.step-card:hover h4,
.step-card:hover .step-icon i {
    color: var(--white);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(204, 177, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.step-card h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.why-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}

.why-card:hover img {
    filter: brightness(0.8);
}

.why-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.quote-icon {
    color: rgba(204, 177, 129, 0.2);
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.author-info h5 {
    color: var(--text-main);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.stars i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* FAQ Accordion */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(24, 170, 223, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Turns plus into an X */
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
    /* arbitrary max height for animation */
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Direct CTA overlay */
.direct-cta {
    border-top: 5px solid var(--dark-nav);
}

/* Responsive Overrides for Service Page */
@media (max-width: 992px) {
    .service-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .topbar {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn-hero-outline-white,
    .btn-hero-solid-gold {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
        top: auto;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .cta-content {
        justify-content: center;
        text-align: center;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-actions-bar {
        display: block;
    }

    .mobile-btn {
        padding: 10px 10px;
        font-size: 0.85rem;
        flex: 1;
        justify-content: center;
        white-space: nowrap;
    }

    .mobile-divider {
        color: var(--secondary-color);
        font-weight: bold;
    }

    .nav-actions {
        gap: 20px;
    }

    .mobile-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--dark-nav);
        color: var(--secondary-color);
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
        color: var(--secondary-color);
    }

    .navbar {
        padding: 15px 0 0 0;
    }

    .nav-content {
        padding-bottom: 15px;
    }

    .nav-links {
        position: fixed;
        top: 130px;
        /* Below the mobile actions bar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 130px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 20px;
        transition: 0.5s ease-in-out;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links>li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--bg-light);
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }

    .nav-links li.dropdown:hover .dropdown-menu,
    .nav-links li.dropdown:active .dropdown-menu,
    .nav-links li.dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .hero {
        min-height: 500px;
        height: auto;
        padding: 120px 0 80px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Portfolio Specific Layout 
   -------------------------------------------------------------------------- */
.portfolio-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.portfolio-sidebar .filter-btn:hover {
    color: var(--primary-color) !important;
}

/* Portfolio Card Hover Effects */
.card-style-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

.card-style-item:hover .portfolio-card-img {
    transform: scale(1.08) !important;
}

/* Responsiveness for Portfolio Sidebars */
@media (max-width: 991px) {
    .portfolio-layout {
        grid-template-columns: 1fr;
    }

    .portfolio-sidebar {
        margin-bottom: 30px;
    }
}

/* Horizontal Scrolling Services */
.services-scroll-wrapper { width: 100%; overflow: hidden; padding-bottom: 20px; }
.services-scroll-container { display: flex; overflow-x: auto; gap: 30px; padding: 10px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--primary-color) #e2e8f0; }
.services-scroll-container::-webkit-scrollbar { height: 8px; }
.services-scroll-container::-webkit-scrollbar-track { background: #e2e8f0; border-radius: 4px; }
.services-scroll-container::-webkit-scrollbar-thumb { background-color: var(--primary-color); border-radius: 4px; }
.service-scroll-card { flex: 0 0 320px; scroll-snap-align: start; background-color: #fff; padding: 40px 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.service-scroll-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.service-scroll-card .service-icon { width: 70px; height: 70px; background-color: rgba(24, 170, 223, 0.1); color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 2rem; border-radius: 50%; margin-bottom: 25px; transition: all 0.3s ease; }
.service-scroll-card:hover .service-icon { background-color: var(--primary-color); color: #fff; transform: rotateY(360deg); }
.service-scroll-card h3 { font-size: 1.5rem; color: var(--dark-nav); margin-bottom: 15px; font-weight: 700; font-family: var(--font-serif); }
.service-scroll-card p { color: var(--text-muted); line-height: 1.7; flex-grow: 1; margin-bottom: 20px; }
.service-scroll-card .service-link { display: inline-flex; align-items: center; color: var(--primary-color); font-weight: 600; text-decoration: none; transition: all 0.3s ease; margin-top: auto; }
.service-scroll-card .service-link i { margin-left: 8px; font-size: 0.9rem; transition: transform 0.3s ease; }
.service-scroll-card .service-link:hover { color: var(--secondary-color); }
.service-scroll-card .service-link:hover i { transform: translateX(5px); }

/* Highlight Card */
.highlight-card { background: linear-gradient(135deg, var(--dark-nav) 0%, #1e293b 100%); color: #fff; }
.highlight-card h3 { color: #fff; }
.highlight-card p { color: rgba(255,255,255,0.8); }
.highlight-card .service-icon { background-color: rgba(255, 255, 255, 0.1); color: var(--secondary-color); }
.highlight-card:hover .service-icon { background-color: var(--secondary-color); color: var(--dark-nav); }
.highlight-card .service-link { color: var(--secondary-color); }
.highlight-card .service-link:hover { color: var(--primary-color); }

/* Other Services Page Hero Header Text Override */
.page-header p, .page-header span, .page-header a { font-family: 'Montserrat', sans-serif; }
