@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --text-color: #e0e0e0;
    --accent-color: #a98c82;
    --light-accent-color: #c3b1ab;
    --serif-font: 'Cormorant Garamond', serif;
    --sans-serif-font: 'Poppins', sans-serif;
}

/* Center the contact form submit button */
.contact-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
}

/* Contact frame animated border */
.contact-frame {
    position: relative;
    border-radius: 14px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(201,168,124,0.05));
}

/* top and bottom animated strokes */
.contact-frame::before,
.contact-frame::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: .85;
}

.contact-frame::before { /* top sweep: left -> right */
    top: 12px;
    transform-origin: left;
    animation: contactBorderTop 3.2s linear infinite;
}

.contact-frame::after { /* bottom sweep: right -> left */
    bottom: 12px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    transform-origin: right;
    animation: contactBorderBottom 3.2s linear infinite;
    animation-delay: 1.6s;
}

/* left and right animated strokes (inserted spans in HTML) */
.contact-frame .border-left,
.contact-frame .border-right {
    position: absolute;
    top: 18px;
    bottom: 18px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--accent-color), transparent);
    opacity: .85;
    pointer-events: none;
}

.contact-frame .border-left { /* left sweep: bottom -> top */
    left: 12px;
    transform-origin: bottom;
    animation: contactBorderLeft 3.2s linear infinite;
    animation-delay: .8s;
}

.contact-frame .border-right { /* right sweep: top -> bottom */
    right: 12px;
    background: linear-gradient(180deg, transparent, var(--accent-color));
    transform-origin: top;
    animation: contactBorderRight 3.2s linear infinite;
    animation-delay: 2.4s;
}

@keyframes contactBorderTop {
    0% { transform: scaleX(0); opacity: .2; }
    20% { transform: scaleX(1); opacity: 1; }
    40% { transform: scaleX(1); opacity: .4; }
    100% { transform: scaleX(0); opacity: .2; }
}

@keyframes contactBorderBottom {
    0% { transform: scaleX(0); opacity: .2; }
    20% { transform: scaleX(1); opacity: 1; }
    40% { transform: scaleX(1); opacity: .4; }
    100% { transform: scaleX(0); opacity: .2; }
}

@keyframes contactBorderLeft {
    0% { transform: scaleY(0); opacity: .2; }
    20% { transform: scaleY(1); opacity: 1; }
    40% { transform: scaleY(1); opacity: .4; }
    100% { transform: scaleY(0); opacity: .2; }
}

@keyframes contactBorderRight {
    0% { transform: scaleY(0); opacity: .2; }
    20% { transform: scaleY(1); opacity: 1; }
    40% { transform: scaleY(1); opacity: .4; }
    100% { transform: scaleY(0); opacity: .2; }
}

.home-services {
    padding: 10px 0 0px;
}

.home-services .container { 
    position: relative; 
}

.home-services .section-title {
    text-align: center;
    margin-bottom: 28px;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: auto;
}

.home-services .section-title .about-title {
    margin: 0 auto;
    display: inline-block;
    font-family: var(--sans-serif-font);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    padding: 6px 18px 10px;
    background: linear-gradient(90deg, rgba(201,168,124,0.12), rgba(201,168,124,0.06));
    border: none;
    border-radius: 10px;
    box-shadow: none;
    width: auto;
}

.home-services .section-title .about-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 140px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #c9a87c, rgba(201,168,124,0.2));
    box-shadow: 0 0 20px rgba(201,168,124,0.35);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #0e1224;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    border: 1px solid rgba(201,168,124,0.12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}

.service-card .card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.service-card .card-content {
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(201,168,124,0.06) 100%);
}

.service-card h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.05rem;
}

.service-card p {
    margin: 0 0 12px;
    color: #cfd6e4;
    font-size: 0.95rem;
    line-height: 1.45;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c9a87c;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
}

.service-card .card-link .arrow { transition: transform .3s ease; }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(201,168,124,0.18);
    border-color: rgba(201,168,124,0.35);
}

.service-card:hover .card-image img { transform: scale(1.06); }

.service-card:hover .card-link { color: #ffd7a8; }

.service-card:hover .card-link .arrow { transform: translateX(4px); }

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .home-services .section-title { margin-bottom: 16px; }
}


.pinnacle-image {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

    .pinnacle-image img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Dark overlay, appears on hover */
    .pinnacle-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: opacity 0.6s ease;
        z-index: 1;
    }

    .pinnacle-image:hover::after {
        opacity: 1;
    }

    /* Caption: centered at bottom, animates in on hover */
    .pinnacle-image .image-caption {
        position: absolute;
      /*  left: 50%;
        bottom: 20px;*/
        transform: translate(-50%, 12px);
        background: transparent;
        color: #e9edf3;
        padding: 10px 16px;
        border-radius: 14px;
        text-align: center;
        font-family: var(--serif-font);
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
        letter-spacing: 0.3px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        opacity: 0;
        z-index: 2;
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .pinnacle-image:hover .image-caption {
        opacity: 1;
        transform: translate(-50%, 0);
    }

/* Keep mobile behavior: caption visible as bubble overlapping image */
@media (max-width: 768px) {
    .pinnacle-image::after {
        opacity: 0;
    }
    /* no hover overlay on touch */
    .pinnacle-image .image-caption {
        opacity: 1;
        transform: translate(0%, 0);
    }
}
/* Footer UL spacing utility */
.footer-ul-icon-gap a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--sans-serif-font);
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2 {
    font-family: var(--serif-font);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
    color: #ffffff !important;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0.5em 0;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    transform: translateY(20px);
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateZ(50px) rotateY(-5deg);
    }
    50% {
        transform: translateY(-15px) translateZ(50px) rotateY(-5deg);
    }
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.4s ease;
}

h1:hover::after {
    width: 150px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

h2 {
    font-size: 3rem;
}

.subtitle {
    font-family: var(--sans-serif-font);
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 5px 24px;
    background: linear-gradient(135deg, #a98c82 0%, #8a6c64 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-family: var(--sans-serif-font);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin-top:3%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #8a6c64 0%, #6d524b 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    animation: pulse 1.5s infinite;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Top Bar */
.top-bar {
    background-color: #000000;
    height: 32px;
    padding: 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    border-bottom: 1px solid rgba(201, 168, 124, 0.2);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 100%;
    flex-wrap: nowrap;
}

.top-bar .contact-info {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    flex-direction: row !important;
}

.top-bar .contact-info a:not(:first-child) {
    border-left: 1px solid rgba(201, 168, 124, 0.3);
    padding-left: 1rem;
    margin-left: 0;
}

.top-bar .contact-info a {
    color: #e8e1d9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    white-space: nowrap;
    height: 100%;
}

/* Keep original HTML order: phone then email */
.top-bar .contact-info a[href^="mailto:"] { order: initial; }
.top-bar .contact-info a[href^="tel:"]    { order: initial; }

/* Subtle pill behind email icon to echo mock */
.top-bar .contact-info a[href^="mailto:"] i {
    background: rgba(201, 168, 124, 0.15);
    border-radius: 6px;
    /* Make pill a fixed square and center the icon */
    width: 22px;
    height: 22px;
    padding: 0;
}

.top-bar .contact-info a:hover {
    color: #ffffff;
}

.top-bar .contact-info i {
    margin-right: 0.6rem;
    color: #c9a87c;
    font-size: 0.85rem;
    /* Make icon area a square and center the glyph */
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.top-bar .social-media {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    border-left: 1px solid rgba(201, 168, 124, 0.3);
    padding-left: 1.5rem;
    margin-left: 1.5rem;
}

.top-bar .social-media a {
    color: #e8e1d9;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.social-media a:hover {
    color: #ffffff;
    opacity: 1;
}

/* Ensure content clears the fixed top bar + header */
body { padding-top: 112px; }

/* Header */
header {
    position: fixed;
    top: 32px; /* equals top bar height */
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 0;
    background: #0a0a0a;
    box-shadow: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 168, 124, 0.12);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 80px;
}

/* push navigation to the right like the reference */
header .main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

header .logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

header .logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Navigation */
header .main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

header .main-nav > ul > li > a {
    color: #e8e1d9;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    /* padding: 0.75rem 1rem; */
    position: relative;
    transition: all 0.3s ease;
    /* display: inline-block; */
}

header .main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a87c;
    transition: all 0.3s ease;
}

header .main-nav > ul > li > a:hover,
header .main-nav > ul > li > a.active {
    color: #c9a87c;
}

header .main-nav > ul > li > a:hover::after {
    width: 100%;
}

header .main-nav > ul > li > a.active::after {
    width: 100%;
}

/* Services Menu Item - Highlighted */
header .main-nav > ul > li.dropdown > a:hover,
header .main-nav > ul > li.dropdown > a.active {
    color: #c9a87c;
    background: rgba(201, 168, 124, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
}

header .main-nav > ul > li.dropdown > a:hover::after,
header .main-nav > ul > li.dropdown > a.active::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(201, 168, 124, 0.45);
}

/* Subtle glow for Services item to mimic mock */
/* header .main-nav > ul > li.dropdown > a {
    box-shadow: 0 0 16px rgba(201, 168, 124, 0.15) inset, 0 4px 24px rgba(201, 168, 124, 0.12);
} */

@media (max-width: 900px) {
    .top-bar .container { padding: 0 1rem; }
    .contact-info { gap: 1rem; }
}

/* Dropdown Menu */
header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a1a1a;
    min-width: 240px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    border: 1px solid rgba(201, 168, 124, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 4px 4px;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

header .dropdown-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(201, 168, 124, 0.1);
    transition: all 0.3s ease;
}

header .dropdown-menu li:last-child {
    border-bottom: none;
}

header .dropdown-menu a {
    color: #e8e1d9;
    padding: 0.8rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

header .dropdown-menu a i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    height: 18px;
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c9a87c;
    transition: all 0.3s ease;
}

header .dropdown-menu a:hover {
    background: rgba(201, 168, 124, 0.1);
    color: #ffffff;
    padding-left: 1.8rem; /* prevent shift on hover */
}

header .dropdown-menu a:hover i {
    opacity: 1;
    transform: none; /* prevent icon shift */
}

/* Mobile Menu Toggle */
header .menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    color: #333;
    font-size: 1.5rem;
    padding: 1rem;
    margin-right: -0.5rem;
}

/* Sticky Header */
header.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Menu */
@media (max-width: 992px) {
    header .menu-toggle {
        display: block;
    }
    
    header .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        padding: 80px 20px 40px;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    header .main-nav.active {
        right: 0;
    }
    
    header .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    header .main-nav > ul > li > a {
        padding: 1rem 0;
        display: block;
        color: #333;
    }
    
    header .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: #f9f9f9;
        border: none;
        box-shadow: none;
        display: none;
        margin: 0.5rem 0;
    }
    
    header .dropdown-menu.active {
        display: block;
    }
    
    header .dropdown-menu a {
        padding: 0.8rem 0 0.8rem 2rem;
        color: #666;
    }
}

/* Navigation menu styles are now consolidated above */

header nav ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

header nav ul li {
    margin: 0 8px;
    position: relative;
    flex-shrink: 0;
}

header nav ul li a {
    font-weight: 500;
    padding: 8px 10px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 2px;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: var(--accent-color);
}

header nav ul li a.active {
    position: relative;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(169, 140, 130, 0.15), transparent);
    box-shadow: 0 0 15px rgba(169, 140, 130, 0.1);
}

header nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0% { opacity: 0.6; width: 60%; }
    50% { opacity: 1; width: 80%; }
    100% { opacity: 0.6; width: 60%; }
}

/* Dropdown Menu Styling */
@keyframes borderAnimation {
    0% {
        --pos: 0;
        --pos2: 0;
        --pos3: 100%;
        --pos4: 0;
    }
    25% {
        --pos: 100%;
        --pos2: 0;
        --pos3: 100%;
        --pos4: 0;
    }
    50% {
        --pos: 100%;
        --pos2: 100%;
        --pos3: 100%;
        --pos4: 0;
    }
    75% {
        --pos: 100%;
        --pos2: 100%;
        --pos3: 0;
        --pos4: 0;
    }
    100% {
        --pos: 100%;
        --pos2: 100%;
        --pos3: 0;
        --pos4: 100%;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26, 26, 26, 0.98);
    min-width: 280px; /* Increased minimum width */
    width: auto; /* Allow width to grow with content */
    padding: 12px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    --accent: var(--accent-color);
    --border-width: 1px;
    --animation-duration: 2s;
}

/* Animated border effect */
.dropdown-menu::before,
.dropdown-menu::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: var(--border-width);
    background: var(--accent);
    animation: borderAnimation var(--animation-duration) linear infinite;
    animation-play-state: paused;
    opacity: 0.8;
}

.dropdown-menu::before {
    top: 0;
    background: linear-gradient(90deg, transparent, var(--accent));
    transform-origin: left;
    animation-name: borderTop;
}

.dropdown-menu::after {
    bottom: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform-origin: right;
    animation-name: borderBottom;
}

.dropdown-menu:hover::before,
.dropdown-menu:hover::after {
    animation-play-state: running;
}

@keyframes borderTop {
    0% { transform: scaleX(0); transform-origin: left; }
    25% { transform: scaleX(1); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: right; }
    75% { transform: scaleX(0); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes borderRight {
    0% { transform: scaleY(0); transform-origin: top; }
    25% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    75% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes borderBottom {
    0% { transform: scaleX(0); transform-origin: right; }
    25% { transform: scaleX(0); transform-origin: right; }
    50% { transform: scaleX(1); transform-origin: right; }
    75% { transform: scaleX(1); transform-origin: left; }
    100% { transform: scaleX(0); transform-origin: left; }
}

@keyframes borderLeft {
    0% { transform: scaleY(0); transform-origin: bottom; }
    25% { transform: scaleY(0); transform-origin: bottom; }
    50% { transform: scaleY(0); transform-origin: bottom; }
    75% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(1); transform-origin: top; }
}

.dropdown-menu .border-right,
.dropdown-menu .border-left {
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--border-width);
    background: var(--accent);
    animation: borderRight var(--animation-duration) linear infinite;
    animation-play-state: paused;
    opacity: 0.8;
}

.dropdown-menu .border-right {
    right: 0;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation-name: borderRight;
}

.dropdown-menu .border-left {
    left: 0;
    background: linear-gradient(0deg, var(--accent), transparent);
    animation-name: borderLeft;
}

.dropdown-menu:hover .border-right,
.dropdown-menu:hover .border-left {
    animation-play-state: running;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    min-width: max-content; /* Ensure dropdown is wide enough for content */
    width: auto;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.dropdown-menu li a {
    color: var(--text-color);
    padding: 8px 32px 8px 28px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95em;
    text-decoration: none;
    min-width: 100%;
    width: max-content;
    position: relative;
    z-index: 1;
    background: transparent;
    border-left: 3px solid transparent;
    white-space: nowrap;
    box-sizing: border-box;
}

.dropdown-menu li a i {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    color: var(--accent-color);
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    position: relative;
    text-align: center;
}

.dropdown-menu li a span {
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    padding-right: 8px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(169, 140, 130, 0.1), transparent);
    color: var(--accent-color);
    padding-left: 32px;
    padding-right: 24px;
    border-left-color: var(--accent-color);
}

.dropdown-menu li a:hover i {
    transform: translateX(4px) scale(1.1);
    color: var(--accent-color);
    filter: drop-shadow(0 0 4px rgba(169, 140, 130, 0.5));
}

/* Add border elements to the dropdown */
.dropdown-menu {
    position: relative;
}

.dropdown-menu .border-right,
.dropdown-menu .border-left {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--accent);
    animation: borderRight 2s linear infinite;
    animation-play-state: paused;
}

.dropdown-menu .border-right {
    right: 0;
    transform-origin: top;
}

.dropdown-menu .border-left {
    left: 0;
    transform-origin: bottom;
}

.dropdown-menu:hover .border-right,
.dropdown-menu:hover .border-left {
    animation-play-state: running;
}

/* Add arrow to dropdown */
.dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.9em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

header nav ul li a:hover, header nav ul li a.active {
    border-bottom-color: var(--text-color);
}

header .social-media a {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: 5px 0;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottomLeft {
    from {
        opacity: 0;
        transform: translate(-30px, 50px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) rotate(0);
    }
}

 .hero .container {
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 5%;
    position: relative;
}

/* Professional Video Showcase Section */
.video-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(26,54,93,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-text {
    padding-right: 20px;
}

.video-text .subtitle {
    color: #1a365d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.video-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.2;
    margin-bottom: 24px;
}

.video-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a882 0%, #d4b896 100%);
}

.counter-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.counter-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 12px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

.counter-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.play-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transition: opacity 0.3s ease;
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.control-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #3182ce;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
}

.video-caption {
    margin-top: 20px;
    text-align: center;
}

.video-caption p {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
}

.video-caption i {
    color: #1a365d;
    margin-right: 8px;
}

/* Dark Counter Section */
.dark-counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.dark-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dark-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23dark-grid)"/></svg>');
    pointer-events: none;
}

.dark-section-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.dark-counter-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark-counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1) 0%, rgba(212, 184, 150, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dark-counter-item:hover::before {
    opacity: 1;
}

.dark-counter-item:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 168, 130, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark-counter-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 1;
}

.dark-counter-number::after {
    content: '+';
    font-size: 32px;
    vertical-align: top;
    margin-left: 5px;
}

.dark-counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Dark Video Player Styles */
.dark-video-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dark-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: #000;
}

.dark-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.dark-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}

.dark-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.dark-play-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

.dark-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    transition: opacity 0.3s ease;
}

.dark-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dark-control-btn {
    background: none;
    border: none;
    color: #c8a882;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.dark-control-btn:hover {
    background-color: rgba(200, 168, 130, 0.2);
}

.dark-progress-container {
    flex: 1;
    height: 4px;
    background: rgba(200, 168, 130, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.dark-progress-bar {
    height: 100%;
    position: relative;
}

.dark-progress-fill {
    height: 100%;
    background: #c8a882;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.dark-time-display {
    color: #c8a882;
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
}

.dark-video-caption {
    margin-top: 20px;
    text-align: center;
}

.dark-video-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.dark-video-caption i {
    color: #c8a882;
    margin-right: 8px;
}

.section-subtitle {
    margin-top: 40px;
    text-align: center;
}

.dark-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Dark section specific styling for counter cards */
.dark-counter-section .video-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 0;
}

.dark-counter-section .dark-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dark-counter-section .dark-content-left h3 {
    color: #c8a882;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.dark-counter-section .dark-content-left h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.dark-counter-section .dark-content-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dark-counter-section .counter-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
}

.dark-counter-section .counter-item::before {
    background: linear-gradient(90deg, #c8a882 0%, #d4b896 100%);
}

.dark-counter-section .counter-item:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 168, 130, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dark-counter-section .counter-number {
    color: #c8a882;
    font-size: 36px;
    margin-bottom: 8px;
}

.dark-counter-section .counter-number::after {
    content: '+';
    font-size: 0.7em;
    vertical-align: top;
    margin-left: 2px;
}

.dark-counter-section .counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Video Stats Cards Styling */
.video-stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 168, 130, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 8px;
    line-height: 1;
}

.stats-number::after {
    content: '+';
    font-size: 0.7em;
    vertical-align: top;
    margin-left: 2px;
}

.stats-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .video-text {
        padding-right: 0;
    }
    
    .video-text h2 {
        font-size: 32px;
    }
    
    .video-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .counter-item {
        padding: 25px 15px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-label {
        font-size: 12px;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .controls-wrapper {
        gap: 10px;
    }
    
    .time-display {
        font-size: 12px;
        min-width: 70px;
    }
    
    /* Dark Counter Section Responsive */
    .dark-counter-section {
        padding: 60px 0;
    }
    
    .dark-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .dark-counter-section .video-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dark-counter-section .counter-item {
        padding: 25px 15px;
    }
    
    .dark-counter-section .counter-number {
        font-size: 36px;
    }
    
    .dark-counter-section .counter-label {
        font-size: 12px;
    }
    
    .dark-video-wrapper {
        border-radius: 15px;
    }
    
    .video-stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stats-card {
        padding: 20px 15px;
    }
    
    .stats-number {
        font-size: 30px;
    }
    
    .stats-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 40px 0;
    }
    
    .video-text h2 {
        font-size: 28px;
    }
    
    .video-description {
        font-size: 16px;
    }
    
    .video-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .counter-item {
        padding: 20px 15px;
    }
    
    .counter-number {
        font-size: 32px;
    }
    
    .counter-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    /* Dark Counter Section Mobile */
    .dark-counter-section {
        padding: 50px 0;
    }
    
    .dark-section-content {
        gap: 30px;
    }
    
    .dark-counter-section .video-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dark-counter-section .counter-item {
        padding: 20px 15px;
    }
    
    .dark-counter-section .counter-number {
        font-size: 32px;
    }
    
    .dark-counter-section .counter-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .dark-video-wrapper {
        border-radius: 12px;
    }
    
    .dark-controls-wrapper {
        gap: 10px;
    }
    
    .dark-time-display {
        font-size: 12px;
        min-width: 70px;
    }
    
    .video-stats-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .stats-card {
        padding: 18px 15px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .stats-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

.hero-content .subtitle {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    display: inline-block;
}

.hero-image {
    flex: 1.2;
    height: 60vh;
    opacity: 0;
    transform-origin: left bottom;
    animation: slideInFromBottomLeft 1s ease-out 0.5s forwards;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Experience Section */
.experience {
    padding: 0px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.experience .container {
    flex-direction: column;
}

.experience h2 {
    margin: 0 auto 50px;
    font-size: 2.8rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.experience h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.4s ease;
}

.experience h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.7;
    transition: all 0.4s ease 0.1s;
}

.experience h2:hover::after {
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.experience h2:hover::before {
    width: 80px;
    opacity: 1;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 30px;
    margin: 15px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: left;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(169, 140, 130, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(169, 140, 130, 0.2);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item:hover::after {
    width: 100%;
}

.service-logo {
    display: flex;
    align-items: center;
    font-family: var(--serif-font);
    font-size: 1.8rem;
    flex: 0 0 25%;
    transition: transform 0.3s ease;
}

.service-item:hover .service-logo {
    transform: translateX(10px);
}

.service-logo img {
    height: 40px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-logo img {
    transform: scale(1.1);
}

.service-description {
    flex: 1;
    padding: 0 50px;
    color: #aaa;
    transition: all 0.4s ease;
}

.service-item:hover .service-description {
    color: #ddd;
    transform: translateX(5px);
}

.arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-10px);
}

.arrow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), #8a6d62);
    z-index: -1;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.arrow-btn i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-item:hover .arrow-btn {
    opacity: 1;
    transform: translateX(0);
}

.arrow-btn:hover {
    border-color: transparent;
    transform: translateX(0) scale(1.1);
}

.arrow-btn:hover::before {
    transform: scale(1.1);
    background: linear-gradient(45deg, #8a6d62, var(--accent-color));
}

.arrow-btn:hover i {
    color: white;
    animation: arrowBounce 0.8s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

/* Pinnacle Experience Section */
.pinnacle-experience {
    padding: 20px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pinnacle-experience .container {
    align-items: center;
    gap: 50px;
}

.pinnacle-content {
    flex: 1;
    /* padding-right: 5%; */
}

.pinnacle-content h2 {
    font-size: 2.8rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    color: #fff;
    margin: 0rem 0 1rem;
}

.pinnacle-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.4s ease;
}

.pinnacle-content h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.7;
    transition: all 0.4s ease 0.1s;
}

.pinnacle-content h2:hover::after {
    width: 100px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.pinnacle-content h2:hover::before {
    width: 80px;
    opacity: 1;
}

.pinnacle-content .subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0 0 25px;
    position: relative;
    padding: 0 0 0px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pinnacle-content .subtitle::before,
.pinnacle-content .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    background: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pinnacle-content .subtitle::before {
    width: 0;
    opacity: 0.7;
    bottom: -3px;
}

.pinnacle-content .subtitle::after {
    content: '✧';
    font-size: 1.4rem;
    width: auto;
    height: auto;
    background: transparent;
    bottom: -12px;
    opacity: 0;
    transform: translateX(-50%) scale(0.5) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pinnacle-content .subtitle:hover {
    letter-spacing: 3.5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pinnacle-content .subtitle:hover::before {
    width: 120px;
    opacity: 1;
}

.pinnacle-content .subtitle:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(360deg);
}

.pinnacle-content .subtitle span {
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

.pinnacle-content .subtitle span::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    white-space: nowrap;
    animation: shine 5s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes shine {
    0% {
        width: 0;
        left: 0;
        opacity: 0.8;
    }
    20% {
        width: 100%;
        left: 100%;
        opacity: 0.5;
    }
    100% {
        width: 100%;
        left: 100%;
        opacity: 0;
    }
}

.pinnacle-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    /* margin-bottom: 2rem; */
    color: #e0e0e0;
}

/* Pinnacle Content List Styles */
.pinnacle-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.pinnacle-content ul li {
    position: relative;
    padding: 8px 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(0.1s * var(--i, 0));
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animation for list items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pinnacle-content ul li {
        padding: 15px 15px 15px 50px;
        font-size: 1rem;
    }
    
    .pinnacle-content ul li:after {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

.pinnacle-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.pinnacle-image:hover {
    transform: translateY(-5px);
}

.pinnacle-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 100px 30px 40px;
    text-align: center;
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pinnacle-image:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 50px;
}

.pinnacle-image:hover img {
    transform: scale(1.05);
}

.pinnacle-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.pinnacle-image:hover::after {
    opacity: 1;
    width: 70%;
}

.pinnacle-content {
    flex: 1;
    /*padding-left: 10%;*/
}

.pinnacle-content ul {
    list-style: none;
    margin: 30px 0;
}

.pinnacle-content ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
}

.pinnacle-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Commitment Section */
.commitment {
    padding: 5px 0;
    overflow: hidden;
    position: relative;
}

.commitment .container {
    align-items: center;
}

.commitment-content {
    flex: 1;
    /*padding-right: 8%;*/
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.8s ease-out 0.4s forwards;
    margin: 0;
    padding-bottom: 0;
}

.commitment-content h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.commitment-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.commitment-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.commitment-content .subtitle {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0 0 1px;
    position: relative;
    padding: 0 0 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.commitment-content .subtitle::before,
.commitment-content .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    background: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.commitment-content .subtitle::before {
    width: 0;
    opacity: 0.7;
    bottom: -3px;
}

.commitment-content .subtitle::after {
    content: '✧';
    font-size: 1.4rem;
    width: auto;
    height: auto;
    background: transparent;
    bottom: -12px;
    opacity: 0;
    transform: translateX(-50%) scale(0.5) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.commitment-content .subtitle:hover {
    letter-spacing: 3.5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.commitment-content .subtitle:hover::before {
    width: 120px;
    opacity: 1;
}

.commitment-content .subtitle:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) rotate(360deg);
}

.commitment-images {
    flex: 1;
    position: relative;
    height: 600px;
    perspective: 1200px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInLeft 1.2s ease-out 0.4s forwards;
    overflow: hidden;
}

.commitment-images img {
    position: absolute;
    border-radius: 15px;
    object-fit: cover;
}

.commitment-images {
    position: relative;
    height: 500px; /* Adjusted height to match content */
    margin: 0;
    padding: 0;
}

.commitment-images .img-top {
    width: 65%;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transform: translateZ(100px) rotateY(-10deg) translateY(0);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.commitment-images .img-bottom {
    width: 70%;
    height: 400px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: translateZ(30px) rotateY(5deg) translateY(0);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Active state for image slider */
.commitment-images .img-top.active {
    opacity: 1;
    transform: translateZ(100px) rotateY(-10deg) translateY(0);
    z-index: 3;
    animation: float-top 8s ease-in-out infinite;
}

.commitment-images .img-bottom.active {
    opacity: 1;
    transform: translateZ(30px) rotateY(5deg) translateY(0);
    z-index: 2;
    animation: float-bottom 8s ease-in-out infinite;
}

/* Animation for the swap effect */
@keyframes float-top {
    0%, 100% { transform: translateZ(100px) rotateY(-10deg) translateY(0); }
    50% { transform: translateZ(100px) rotateY(-10deg) translateY(-10px); }
}

@keyframes float-bottom {
    0%, 100% { transform: translateZ(30px) rotateY(5deg) translateY(0); }
    50% { transform: translateZ(30px) rotateY(5deg) translateY(10px); }
}

/* Add a subtle pulse effect to indicate interactivity */
@keyframes pulse {
    0% { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); }
}

.commitment-images:hover .img-top.active,
.commitment-images:hover .img-bottom.active {
    animation-play-state: paused;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.2;
    z-index: 1;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    flex: 1;
    min-width: 200px;
    margin: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(169, 140, 130, 0.1);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(169, 140, 130, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(169, 140, 130, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #a98c82, #d4b8b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 2px 10px rgba(169, 140, 130, 0.2);
    transition: all 0.3s ease;
}

.stat-item .number::after {
    content: '+';
    position: relative;
    display: inline-block;
    font-size: 0.6em;
    top: -0.5em;
    opacity: 0.8;
}

.stat-item .label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
    position: relative;
    padding-top: 15px;
}

.stat-item .label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Animation for counter */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-item.animate .number {
    animation: pulse 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stat-item {
        min-width: 160px;
        padding: 25px 15px;
    }
    
    .stat-item .number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .stat-item {
        min-width: 45%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .stat-item {
        min-width: 100%;
        margin: 10px 0;
    }
}

/* Enquiry Form Section */
.enquiry-form-section {
    padding: 100px 0;
    text-align: center;
}

.enquiry-form-section .container {
    flex-direction: column;
}

.enquiry-form {
    width: 100%;
    margin-top: 50px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.enquiry-form input, .enquiry-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--text-color);
    padding: 15px 0;
    font-family: var(--sans-serif-font);
    font-size: 1rem;
    width: 32%;
}

.enquiry-form .form-row:nth-child(2) select {
    width: 49%;
}

.enquiry-form input::placeholder {
    color: #aaa;
}

.enquiry-form .btn {
    margin-top: 20px;
    background-color: var(--light-accent-color);
}

/* Contact Us Section */
.contact-us {
    padding: 10px 0;
}

.contact-us .container {
    align-items: stretch;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.contact-form-wrapper {
    flex: 1;
    /*padding-left: 8%;*/
}

.contact-form .input-group {
    position: relative;
    margin-bottom: 15px;
}

.contact-form .input-group::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--text-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.contact-form .input-group:hover::after {
    transform: scaleX(1);
}

.contact-form .input-group i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 0 8px 30px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    box-shadow: none;
    transition: border-color 0.25s ease, color 0.25s ease, text-indent 0.25s ease;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form select option {
    background-color: #1a365d;
    color: white;
    padding: 10px;
}

.contact-form textarea {
    height: px;
    resize: none;
}

/* Remove any hover/focus box and keep only the underline */
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* Subtle placeholder styling and animation cue */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.contact-form .input-group:hover input::placeholder,
.contact-form .input-group:hover textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Gentle horizontal glide on hover to mimic a slight scroll */
.contact-form .input-group:hover input,
.contact-form .input-group:hover textarea,
.contact-form .input-group:hover select {
    text-indent: 2px;
}
.contact-form input.error, .contact-form textarea.error {
        border-bottom-color: #d9534f;
}
.contact-form .error-msg {
    color: #d9534f;
    font-size: 0.85rem;
    display: block;
    margin-top: 6px;
    margin-left: 30px;
}
.experience .subtitle {
text-align: center;
display: inline-block;
margin: 0 auto 1.5rem;
padding: 0.5rem 1.5rem;
color: var(--accent-color);
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 4px;
text-transform: uppercase;
position: relative;
background: rgba(169, 140, 130, 0.1);
border-radius: 30px;
overflow: hidden;
transition: all 0.3s ease;
margin-top: 1%
}

.experience .subtitle::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
transform: translateX(-100%);
transition: 0.5s;
}

.experience .subtitle:hover::before {
transform: translateX(100%);
}

.experience .subtitle::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 2px;
background: var(--accent-color);
transition: all 0.3s ease;
}

.experience .subtitle:hover::after {
width: 100%;
background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.agree-policy {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
    display: flex; /* place text and box on one line */
    align-items: center;
    gap: 12px;
}

    .agree-policy input {
        margin: 0;
        width: 18px;
        height: 18px;
    }

.agree-policy a {
    color: var(--text-color);
    text-decoration: underline;
}

.contact-form .btn {
    background-color: var(--light-accent-color);
    color: var(--primary-color);
}

.contact-form .btn i {
    margin-right: 10px;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a1a3a 0%, #0c0e2a 100%);
    color: #f8f9fa;
    font-family: var(--sans-serif-font);
    position: relative;
    min-height: 100px; /* Ensure footer has a minimum height */
    padding: 0px 0 10px; /* Increased top and bottom padding */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    overflow: visible; /* Ensure content isn't clipped */
}

    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #c9a87c;
        background-size: 200% auto;
        animation: gradient 3s linear infinite;
    }

/* Company Info */
.footer-company {
    margin-bottom: 50px;
    max-width: 500px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    color: #b1b8c5;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer Main Section */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px; /* tighter column gap */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px 0; /* tighter padding */
    position: relative;
    z-index: 2;
}

.footer-company {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.footer-links {
    flex: 0 0 auto;
    min-width: 180px;
    margin-bottom: 20px;
}

/* Services and Social Media Container */
.services-social-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex: 1.5;
    min-width: 0;
}

/* Services Section */
.footer-links {
    flex: 0.6;
    min-width: 0;
}

/* Social Media Section */
.footer-social-section {
    flex: 1;
    min-width: 0;
    margin-top: 1.5rem; /* Align with the title of Our Services */
}

/* Contact Section */
.footer-contact {
    flex: 1;
    min-width: 250px;
    padding-left: 20px;
}

.contact-info {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 15px; */
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    color: #f4d03f;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 14px;
    min-width: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f4d03f;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0.8;
}

/* X (Twitter) icon specific styles */
.footer-social a.twitter-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
}

.footer-social a.twitter-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

/* Match the hover effect with other social icons */
.footer-social a.twitter-icon:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
    color: #fff;
}

.footer-social a.twitter-icon:hover::before {
    opacity: 1;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.footer-social a i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover i {
    color: #0a1a3a;
    transform: scale(1.1);
}

/* Social Media Section Specific */
.footer-social-section {
    padding: 15px 0 0 0;
}

.footer-social-section .footer-title {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-social-section .footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f4d03f, #d4af37);
    transition: width 0.3s ease;
}

.footer-social-section:hover .footer-title::after {
    width: 100%;
}

/* Company Info */
.footer-company {
    padding-right: 0;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    color: #b1b8c5;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer Links */
.footer-links {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #f4d03f;
    transform: translateX(3px);
}

.footer-links a:hover {
    color: #f4d03f;
}

.footer-links i {
    font-size: 0.8em;
    color: #f4d03f;
}

/* Footer Bottom Section */
.footer-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-top: 30px;
    align-items: start;
}

/* Social Media Section */
.footer-social-section {
    grid-column: 1;
}

/* Contact Section */
.footer-contact {
    grid-column: 2;
}

/* Copyright Section */
.copyright {
    grid-column: 3;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0;
}

.copyright a {
    color: #f4d03f;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ========================
   Header nav active styles
   ======================== */
.main-nav ul li a {
    position: relative;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.main-nav ul li a.active {
    color: #e9d1ad; /* light gold text */
    background: rgba(201, 168, 124, 0.12);
    box-shadow: 0 0 0 1px rgba(201, 168, 124, 0.15), 0 8px 22px rgba(201, 168, 124, 0.18);
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 28px;
    height: 3px;
    background: #c9a87c;
    border-radius: 3px;
}

.main-nav ul li a:hover:not(.active) {
    color: #e9d1ad;
}

/* Mobile overlay active styles */
#mobileNav .overlay-links a.active {
    color: #e9d1ad;
    background: rgba(201, 168, 124, 0.12);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(201, 168, 124, 0.18);
}

.copyright a:hover {
    text-decoration: underline;
}

/* Social Media Section */
.footer-social-section {
    margin-top: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-social a:hover {
        background: linear-gradient(135deg, #c9a87c, #c9a87c);
        transform: translateY(-3px);
        color: #c9a87c;
        box-shadow: 0 5px 15px rgba(244, 208, 63, 0.3);
    }

/* Contact Section */
.footer-contact {
    margin-top: 0;
}

.contact-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item i {
    color: #f4d03f;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f4d03f;
}

/* Copyright Row */
.footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #f4d03f;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-copyright a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Copyright Bar */
.copyright-bar {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-bar p {
    margin: 0;
}

.copyright-bar .footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
}

.copyright-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-bar a:hover {
    color: #f4d03f;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Footer Copyright Section */
.footer-copyright {
    background-color: #0c0e2a;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.copyright-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}

.social-bottom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

.social-bottom a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-bottom a:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
    background: rgba(201, 168, 124, 0.15);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer bottom bar refinements (reverted to border-only) */
.footer-copyright {
    border-top: 1px solid rgba(201, 168, 124, 0.15);
}

.ai-lab-link {
    color: #c9a87c !important;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-weight: 400;
    position: relative;
}

.ai-lab-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: currentColor;
    border-radius: 2px;
    transition: width 0.25s ease-in-out;
    pointer-events: none;
}

.ai-lab-link:hover {
    opacity: 0.9;
}

.ai-lab-link:hover::after {
    width: 100%;
}


/* Copyright */
.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright a {
    color: #f4d03f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .footer-main {
        padding: 40px 20px;
    }
    
    .footer-company,
    .footer-contact {
        flex: 1 1 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-links,
    .footer-contact {
        min-width: 200px;
    }
    
    .footer-social-section,
    .footer-contact {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .footer-main {
        flex-wrap: wrap;
    }
    
    .footer-company {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-links {
        flex: 1;
        min-width: 200px;
    }
    
    .services-social-container {
        flex: 2;
        min-width: 0;
        flex-wrap: wrap;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .copyright {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
        padding: 20px 20px;
    }
    
    .footer-company,
    .footer-links,
    .footer-contact {
        width: 100%;
        text-align: left;
        padding: 0 3px;
    }
    
    .footer-links {
        margin-bottom: 0px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-social-section,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-item {
        justify-content: center !important;
        text-align: center;
    }
    
    .copyright {
        text-align: center !important;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .copyright p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Company info takes full width on mobile */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
}

/* Stack everything on small screens */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #c9a87c;
    }

.footer-title:hover {
    transform: translateX(5px);
}

.footer-title:hover::after {
    width: 70px;
}

/* Company Info */
.footer-company {
    max-width: 300px;
}

/* .footer-logo img {
    height: 40px;
    margin-bottom: 20px;
} */

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 1px;
    justify-content: flex-start;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a87c, #c9a87c);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
    border-color: rgba(244, 208, 63, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover i {
    transform: scale(1.2);
    color: #0a1a3a;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b1b8c5;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 0.95rem;
    gap: 8px;
    transform-origin: left;
}

    .footer-links a::before { content: none !important; }

    .footer-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        transition: none;
    }

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.footer-links a:hover::before { color: inherit; }

/* Inline BI icon in footer items */
.footer-links li { display: flex; align-items: center; gap: 8px; }
.footer-links li i.bi { color: #c9a87c; font-size: 0.95rem; line-height: 1; }
.footer-links li:hover i.bi { color: #fff; }

.footer-links a:hover::after {
    width: 0;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 20px;
    color: #b1b8c5;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: rgba(244, 208, 63, 0.2);
}

    .contact-info i {
        color: #c9a87c;
        margin-right: 15px;
        margin-top: 4px;
        font-size: 1.1rem;
        min-width: 20px;
        text-align: center;
        background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(212, 175, 55, 0.1));
        width: 36px;
        height: 36px;
        line-height: 36px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

.contact-info li:hover i {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.2);
}

.contact-info a {
    color: #b1b8c5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #f4d03f, #d4af37);
    transition: width 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.contact-info a:hover::after {
    width: 100%;
}

/* Newsletter */
.footer-newsletter p {
    color: #b1b8c5;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form:focus-within {
    border-color: rgba(244, 208, 63, 0.3);
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form:focus-within input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    color: #0a1a3a;
    border: none;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-subscribe:hover {
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
    transform: translateY(-2px);
}

.btn-subscribe:hover::before {
    left: 100%;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #b1b8c5;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.3), transparent);
}

.copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 15px;
}

.copyright::before {
    content: '©';
    font-size: 1.2em;
    color: #f4d03f;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.footer-legal a {
    color: #b1b8c5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    position: relative;
    padding: 5px 0;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #f4d03f, #d4af37);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-legal span {
    color: #aaa;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2c3e50, #1a1a1a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #c9a87c, #2c3e50, #c9a87c, #1a1a1a);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: gradientRotate 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 168, 124, 0.4);
    background: linear-gradient(135deg, #c9a87c, #2c3e50);
    color: #ffffff;
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.5s ease;
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.98);
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 100;
    background-color: #25D366;
}

/* Navigation Dropdown */
header nav ul li.dropdown {
    position: relative;
}

header nav ul .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    min-width: 209px;
    margin-left: 50px;
    display: none;
    flex-direction: column;
}

header nav ul li.dropdown:hover .dropdown-menu {
    display: flex;
}

header nav ul .dropdown-menu li {
    margin: 0;
}

header nav ul .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    border-bottom: none;
    font-size: 0.9rem;
}

header nav ul .dropdown-menu li a:hover {
    background-color: var(--secondary-color);
}

/* Service Page Section */
main {
    padding-top: 120px; /* To offset fixed header */
}

.service-page-section {
  padding: 35px 0;
  border-bottom: 1px solid var(--secondary-color);
}

.service-page-section:last-child {
    border-bottom: none;
}

.service-page-section .container {
    align-items: flex-start;
    gap: 3%;
}

.service-page-image {
    flex: 1;
    position: relative;
}

.service-page-image img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.image-caption-service {
    position: absolute;
    bottom: 8px;
    right: 2px;
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 15px;
    font-family: var(--serif-font);
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
}

.service-page-content {
    flex: 1;
    padding-top: 20px;
}

.service-page-content .service-logo {
    margin-bottom: 20px;
}

.service-page-content .service-logo img {
    height: 80px;
}

.service-page-content h2 {
    margin-bottom: 20px;
}

.service-page-content p {
    color: #aaa;
    margin-bottom: 20px;
}

.service-page-content .jet-specs {
    margin: 30px 0;
}

.service-page-content .jet-specs p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 16px;
}
.service-page-content .jet-specs .jet-bullet {
  font-size: 3.2em;          /* premium large bullet */
  line-height: 0.5;
  width: 1.2em;
  flex: 0 0 0.2em;
  color: #9e9e9e;
}

.service-page-content .jet-specs .jet-text {
  color: #bdbdbd;
  line-height: 1.7;
}

.service-page-content .jet-specs h4 {
    font-family: var(--sans-serif-font);
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
}

.service-page-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-page-content ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 0;
}

.hero-content .subtitle {
    color: transparent;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    margin-top:4%;
    text-transform: uppercase;
    background: linear-gradient(90deg, #d4af37, #f4e5c2, #d4af37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite;
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: 1.2;
}

.hero-content .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes gradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes shine {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.service-page-section.alt-layout .container {
    flex-direction: row-reverse;
}

.service-page-section.alt-layout .image-caption-service {
    right: auto;
    left: 0px;
}

/* Contact Page Section */
.contact-buttons .email-text { 
    text-transform: none !important;
    font-variant: normal; 
}

.contact-page-section {
    padding: 35px 0;
}

.contact-page-section .container {
    display: flex;
    align-items: flex-start;
    gap: 6%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact page columns */
.contact-details-map { 
    width: 45%; 
}

.contact-page-form {
    width: 42%;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1px;
    backdrop-filter: blur(10px);
}

/* Contact frame animated borders - same as home page */
    .contact-page-form.contact-frame {
        position: relative;
        overflow: hidden;
        margin-top: 25px;
    }

.contact-page-form .border-left,
.contact-page-form .border-right {
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(45deg, #c9a87c, #f4d03f, #c9a87c);
    background-size: 200% 200%;
    animation: borderMove 3s ease-in-out infinite;
}

.contact-page-form .border-left {
    left: 0;
}

.contact-page-form .border-right {
    right: 0;
    animation-delay: 1.5s;
}

/* Map sizing */
.map-container { 
    margin-top: 24px; 
}

.map-container iframe { 
    width: 100%; 
    height: 320px; 
    border-radius: 16px; 
}

.address {
    color: #aaa;
    margin: 10px 0 10px;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-btn {
    flex: 1;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.contact-btn i {
    margin-right: 10px;
}

.contact-btn:hover {
    background-color: #3a3a3a;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

/* About Us Page */

/* About Intro Section */
.about-intro-section {
    padding: 80px 0;
}

.about-intro-section .container {
    align-items: center;
    gap: 5%;
}

.about-intro-image {
    flex: 0 0 45%;
}

.about-intro-image img {
    border-radius: 15px;
    width: 100%;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: #aaa;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #111;
}

.why-choose-us-section .container {
    flex-direction: column;
    text-align: center;
}

.why-choose-us-section h2 {
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    text-align: left;
}

.feature-item {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--sans-serif-font);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.feature-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-section .container {
    align-items: center;
    gap: 8%;
}

.faq-content {
    flex: 1;
}

.faq-content h2 {
    margin-bottom: 30px;
}

.faq-accordion {
    flex: 1.2;
    width: 100%;
    max-width: 680px; /* match screenshot column width */
    margin-left: auto; /* keep on the right side */
    text-align: left;
    padding-left: 0;
}

.faq-item {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    border-bottom: 1px solid var(--secondary-color);
    cursor: pointer;
}

.faq-item p {
    margin: 0;
    font-weight: 500;
}

.faq-item i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item:hover i {
    transform: translateX(5px);
}
/* Header Styles */
.home-header{
    margin-left: 50%;
}

/* === Header Overrides (per user request) === */
/* Header */
header {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 1px solid var(--accent-color);
}

header .container {
    justify-content: space-between;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Navigation menu styles are now consolidated above */

header nav ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

header nav ul li {
    margin: 0 8px;
    position: relative;
    flex-shrink: 0;
}

header nav ul li a {
    font-weight: 500;
    padding: 8px 10px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 2px;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: var(--accent-color);
}

header nav ul li a.active {
    position: relative;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(169, 140, 130, 0.15), transparent);
    box-shadow: 0 0 15px rgba(169, 140, 130, 0.1);
}

header nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0% { opacity: 0.6; width: 60%; }
    50% { opacity: 1; width: 80%; }
    100% { opacity: 0.6; width: 60%; }
}

/* Dropdown Menu Styling */
@keyframes borderAnimation {
    0% { --pos: 0; --pos2: 0; --pos3: 100%; --pos4: 0; }
    25% { --pos: 100%; --pos2: 0; --pos3: 100%; --pos4: 0; }
    50% { --pos: 100%; --pos2: 100%; --pos3: 100%; --pos4: 0; }
    75% { --pos: 100%; --pos2: 100%; --pos3: 0; --pos4: 0; }
    100% { --pos: 100%; --pos2: 100%; --pos3: 0; --pos4: 100%; }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26, 26, 26, 0.98);
    min-width: 280px; /* Increased minimum width */
    width: auto; /* Allow width to grow with content */
    padding: 12px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    --accent: var(--accent-color);
    --border-width: 1px;
    --animation-duration: 2s;
}

/* Animated border effect */
.dropdown-menu::before,
.dropdown-menu::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: var(--border-width);
    background: var(--accent);
    animation: borderAnimation var(--animation-duration) linear infinite;
    animation-play-state: paused;
    opacity: 0.8;
}

.dropdown-menu::before {
    top: 0;
    background: linear-gradient(90deg, transparent, var(--accent));
    transform-origin: left;
    animation-name: borderTop;
}

.dropdown-menu::after {
    bottom: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform-origin: right;
    animation-name: borderBottom;
}

.dropdown-menu:hover::before,
.dropdown-menu:hover::after {
    animation-play-state: running;
}

@keyframes borderTop {
    0% { transform: scaleX(0); transform-origin: left; }
    25% { transform: scaleX(1); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: right; }
    75% { transform: scaleX(0); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes borderRight {
    0% { transform: scaleY(0); transform-origin: top; }
    25% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    75% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes borderBottom {
    0% { transform: scaleX(0); transform-origin: right; }
    25% { transform: scaleX(0); transform-origin: right; }
    50% { transform: scaleX(1); transform-origin: right; }
    75% { transform: scaleX(1); transform-origin: left; }
    100% { transform: scaleX(0); transform-origin: left; }
}

@keyframes borderLeft {
    0% { transform: scaleY(0); transform-origin: bottom; }
    25% { transform: scaleY(0); transform-origin: bottom; }
    50% { transform: scaleY(0); transform-origin: bottom; }
    75% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(1); transform-origin: top; }
}

.dropdown-menu .border-right,
.dropdown-menu .border-left {
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--border-width);
    background: var(--accent);
    animation: borderRight var(--animation-duration) linear infinite;
    animation-play-state: paused;
    opacity: 0.8;
}

.dropdown-menu .border-right {
    right: 0;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation-name: borderRight;
}

.dropdown-menu .border-left {
    left: 0;
    background: linear-gradient(0deg, var(--accent), transparent);
    animation-name: borderLeft;
}

.dropdown-menu:hover .border-right,
.dropdown-menu:hover .border-left {
    animation-play-state: running;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    min-width: max-content; /* Ensure dropdown is wide enough for content */
    width: auto;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.dropdown-menu li a {
    color: var(--text-color);
    padding: 8px 32px 8px 28px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95em;
    text-decoration: none;
    min-width: 100%;
    width: max-content;
    position: relative;
    z-index: 1;
    background: transparent;
    border-left: 3px solid transparent;
    white-space: nowrap;
    box-sizing: border-box;
}

.dropdown-menu li a i {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    color: var(--accent-color);
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    position: relative;
    text-align: center;
}

.dropdown-menu li a span {
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    padding-right: 8px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(169, 140, 130, 0.1), transparent);
    color: var(--accent-color);
    padding-left: 32px;
    padding-right: 24px;
    border-left-color: var(--accent-color);
}

.dropdown-menu li a:hover i {
    transform: translateX(4px) scale(1.1);
    color: var(--accent-color);
    filter: drop-shadow(0 0 4px rgba(169, 140, 130, 0.5));
}

/* Add border elements to the dropdown */
.dropdown-menu { position: relative; }

.dropdown-menu .border-right,
.dropdown-menu .border-left {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--accent);
    animation: borderRight 2s linear infinite;
    animation-play-state: paused;
}

.dropdown-menu .border-right { right: 0; transform-origin: top; }
.dropdown-menu .border-left  { left: 0;  transform-origin: bottom; }

.dropdown-menu:hover .border-right,
.dropdown-menu:hover .border-left { animation-play-state: running; }

/* Add arrow to dropdown */
.dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.9em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

header nav ul li a:hover, header nav ul li a.active {
    border-bottom-color: var(--text-color);
}

header .social-media a { font-size: 1.2rem; }

/* Override earlier layout spacing to match user's absolute header */
body { padding-top: 0 !important; }

/* --- Responsive: keep top-bar contact on one line --- */
@media (max-width: 1400px) {
.top-bar .contact-info { gap: 0.6rem !important; }
.top-bar .contact-info a { font-size: 0.72rem; }
.top-bar .contact-info a:not(:first-child) { padding-left: 0.6rem; }
.top-bar .social-media { gap: 1rem; padding-left: 1rem; margin-left: 1rem; }
}

@media (max-width: 1200px) {
.top-bar .container { padding: 0 1rem; }
.top-bar .contact-info { gap: 0.5rem !important; }
.top-bar .contact-info a { font-size: 0.7rem; }
.top-bar .contact-info a:not(:first-child) { padding-left: 0.5rem; }
}
.about-intro-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--secondary-color);
}
.about-intro-section .container {
  align-items: center;
  gap: 6%;
}
.about-intro-image { flex: 1; }
.about-intro-image img { border-radius: 14px; }
.about-intro-content { flex: 1; }
.about-intro-content .subtitle { letter-spacing: 3px; font-weight: 600; }
.about-intro-content h2 { margin: 12px 0 12px; }
.about-intro-content p { color: #aaa; }

.why-choose-us-section {
  padding: 10px 0;
  border-bottom: 1px solid var(--secondary-color);
}
.why-choose-us-section .section-title {
  text-align: center;
  margin-bottom: 36px;
}
.why-choose-us-section .section-title .subtitle {
  display: inline-block;
  text-transform: uppercase;
}
.why-choose-us-section .section-title h2 {
  margin-top: 6px;
}
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.title-divider .divider-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent-color);
  opacity: 0.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    text-align: left;
}
.feature-item {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .feature-item:hover i {
        transform: scale(1.1);
    }
.feature-item:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-item i {
    font-size: 2.5rem;
    color: #a98c82;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.feature-item h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #fff; /* White for feature item headings */
        font-family: var(--serif-font);
 }
    .feature-item p {
        color: #aaa; /* Lighter gray for feature item text */
        line-height: 1.8;
        font-size: 1rem;
    }
    .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.faq-section {
  padding: 90px 0;
}
.faq-section .container {
  align-items: flex-start;
  gap: 8%;
}
.faq-content {
  flex: 0 0 34%;
}
.faq-content .subtitle { text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }
.faq-content h2 { margin: 8px 0 16px; }
.faq-content .btn {
  margin-top: 12px;
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.faq-accordion {
  flex: 1;
}
.faq-item {
  border-bottom: 1px solid var(--secondary-color);
}
.faq-header {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-family: var(--sans-serif-font);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color .25s ease;
}
.faq-header .faq-question {
  text-align: left;
  font-weight: 500;
}
.faq-header i {
  transition: transform .25s ease, color .25s ease;
  color: #aaa;
}
.faq-item.active .faq-header { color: var(--accent-color); }
.faq-item.active .faq-header i { transform: rotate(90deg); color: var(--accent-color); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  color: #aaa;
  padding: 0 0 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-intro-section { padding: 64px 0; }
  .about-intro-section .container { flex-direction: column; gap: 20px; }
  .why-choose-us-section { padding: 10px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 20px 0; }
  .faq-section .container { flex-direction: column; gap: 22px; }
  .faq-content { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .feature-item { padding: 22px 18px; }
}

/* Contact page responsive */
@media (max-width: 1024px) {
    .contact-page-section .container {
        flex-direction: column;
        gap: 1px;
    }
    .contact-details-map { width: 100%; }
    .contact-page-form { 
        width: 100%; 
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 60px 0;
    }
    
    .contact-page-form {
        padding: 25px;
    }
    
    .map-container iframe {
        height: 250px;
    }

    .contact-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-page-form .btn {
        width: 100%;
    }
}

.policy-article {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 36px 32px;
}
.policy-article h2 {
 font-family: var(--serif-font);
 color: #ffffff;
 font-size: 1.6rem;
 margin: 28px 0 12px;
    }

    .policy-article p,
    .policy-article li {
        color: #d4d4d4;
    }
    .policy-article ul {
        margin: 10px 0 10px 20px;
        padding-left: 10px;
    }
        .policy-article ul li {
            list-style: disc;
            margin-bottom: 6px;
        }
    .policy-article a {
        color: var(--text-color);
        text-decoration: underline;
    }
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-article {
        padding: 24px 18px;
    }
}

@media (max-width: 1280px) {
    .container {
        width: 92%;
    }

    .policy-article {
        max-width: 860px;
    }
}

/* ===== Index Page Responsive (Top bar, Header, Contact section) — moved to bottom for precedence ===== */
@media (max-width: 1280px) {
  header .logo img { height: 46px; }
  header nav ul li a { padding: 8px 8px; }
  .contact-us .container { gap: 1%; }
}

@media (max-width: 1024px) {
  /* Keep top bar compact */
  .top-bar .container { padding: 0 12px; }
  .top-bar .contact-info a { font-size: 0.7rem; }
  .top-bar .social-media { gap: 0.8rem; }

  /* Header spacing */
  header { padding: 0.8rem 0; }
  header .container { width: 94%; }
  header nav ul li { margin: 0 6px; }

  /* Contact section splits to stacked */
  .contact-us .container { flex-direction: column; gap: 24px; }
  .contact-image, .contact-form-wrapper { width: 100%; flex: unset; }
  .contact-form-wrapper { padding-left: 0; }
}

@media (max-width: 768px) {
  /* Top bar simplified */
  .top-bar { height: 30px; }
  .top-bar .contact-info { gap: 0.5rem !important; }
  .top-bar .contact-info a { font-size: 0.68rem; }
  .top-bar .social-media { display: none; }

  /* Header */
  header { top: 32px; }
  header .logo img { height: 42px; }
  header nav ul { gap: 2px; }
  header nav ul li a { font-size: 0.95rem; padding: 6px 8px; }

  /* Contact form inputs tighter on small screens */
  .contact-form input, .contact-form textarea, .contact-form select { padding: 12px 0 8px 28px; font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .container { width: 94%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .contact-form .btn { width: 100%; }
}

@media (max-width: 480px) {
  .top-bar { height: 28px; }
  .top-bar .contact-info a { font-size: 0.64rem; }
  header .logo img { height: 38px; }
  header nav ul li a { font-size: 0.9rem; }
  .contact-form input, .contact-form textarea, .contact-form select { padding-left: 26px; }
}

/* ===== Index sections: hero, experience, pinnacle, commitment, stats, footer ===== */
@media (max-width: 1200px) {
  .hero .container { gap: 5%; }
  .hero-image img { max-width: 560px; width: 100%; height: auto; }
  .pinnacle-experience .container { gap: 6%; }
}

@media (max-width: 992px) {
  /* Hero stacks */
  .hero .container { flex-direction: column; align-items: center; text-align: center; gap: 22px; }
  .hero-content { order: 2; }
  .hero-image { order: 1; width: 100%; display: flex; justify-content: center; }
  .hero-image img { width: 100%; max-width: 720px; height: auto; }
  .hero .btn { margin: 10px auto 0; }

  /* Experience items become vertical cards */
  .experience .service-item { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .experience .service-description { max-width: 720px; }

  /* Pinnacle section stacks */
  .pinnacle-experience .container { flex-direction: column; align-items: center; gap: 22px; }
  .pinnacle-image, .pinnacle-content { width: 100%; }
  .pinnacle-content { text-align: center; }

  /* Commitment section stacks */
  .commitment .container { flex-direction: column; gap: 1px; }
  .commitment-content, .commitment-images { width: 100%; }
  .commitment-content { text-align: center; }

  /* Stats: 2 columns */
  .stats .container { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

  /* Footer: 2 columns */
  .site-footer .footer-main { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0px; }
}

@media (max-width: 768px) {
  /* Typography scale */
  h1 { font-size: clamp(1.9rem, 5vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 3.8vw, 1.8rem); margin-left: 20px; }
  .subtitle { font-size: 0.85rem; letter-spacing: 3px; margin-left: 17px; }

  /* Section paddings */
  .experience { padding: 1px 0; }
  .pinnacle-experience { padding: 0px 0; }
  .commitment { padding: 1px 0; }
  .stats { padding: 50px 0; }

  /* Stats: 2 columns tighter */
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Footer becomes single column stack */
  .site-footer .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Hero image constraint */
  .hero-image img { max-width: 480px; }
  .experience .service-item { padding: 12px 0; }
  .pinnacle-content ul { padding-left: 18px; text-align: left; display: inline-block; }

  /* Stats: single column */
  .stats .container { grid-template-columns: 1fr; gap: 12px; }

  /* Footer spacing */
  .site-footer .container { padding: 0 14px; }
}

@media (max-width: 400px) {
  .hero .btn, .contact-form .btn { width: 100%; }
  .top-bar .contact-info a { font-size: 0.62rem; }
}

/* ===== Mobile hamburger + right-side overlay ===== */
/* Button hidden on desktop */
.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 28px;
  position: absolute;
  right: 16px;
  margin-top: 25px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1101;
}
.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  border-radius: 2px;
}

/* Overlay base (hidden by default) */
.overlay-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(100vw, 403px);
  background: #151718;
  color: var(--text-color);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1200;
  box-shadow: -10px 0 30px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
}
.overlay-nav.open { transform: translateX(0); }

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.overlay-header .brand strong { font-family: var(--serif-font); font-size: 1.4rem; }
.overlay-header .brand small { display: block; color: #bdbdbd; margin-top: 4px; }
.overlay-close {
  font-size: 28px;
  line-height: 1;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.overlay-links { list-style: none; padding: 16px 18px; margin: 0; flex: 1 1 auto; overflow-y: auto; }
.overlay-links > li { margin: 0px 0; }
.overlay-links a { color: #eaeaea; text-decoration: none; font-family: var(--serif-font); font-size: 1.25rem; display: inline-block; padding: 6px 0; }

/* Submenu */
.overlay-links .submenu { list-style: none; padding-left: 14px; margin-top: 8px; display: none; }
.overlay-links .has-submenu.open .submenu { display: block; }
.overlay-links .submenu a { font-size: 1.05rem; color: #cccccc; }
.overlay-links .submenu-toggle::after { content: '▾'; display: inline-block; margin-left: 8px; font-size: 0.9em; }
.overlay-links .has-submenu.open > .submenu-toggle::after { content: '▴'; }

.overlay-footer { padding: 12px 18px 18px 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.overlay-footer a { color: #eaeaea; font-size: 1.2rem; }

/* Show hamburger and hide desktop nav on tablet/mobile */
@media (max-width: 992px) {
  .mobile-menu-btn { display: block; }
  header .container { position: relative; }
  header .main-nav { display: none; }
  header .dropdown-menu { display: none; }
  header .dropdown-menu.active { display: block; }
}

/* When overlay is open, hide hamburger */
body.menu-open .mobile-menu-btn { display: none !important; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 12px 0 8px 30px;
  box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--accent-color);
  box-shadow: none;
  outline: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

/* Inline consent (checkbox + text) alignment */
.contact-form .consent,
.contact-form .checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
}

.contact-form .consent label,
.contact-form .checkbox-row label {
  margin: 0;
  font-size: 0.95rem;
  color: #cfd6e4;
  line-height: 1.4;
}

.contact-form .consent a,
.contact-form .checkbox-row a { text-decoration: underline; }

/* Checkbox visual, compact and aligned */
.contact-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  vertical-align: middle;
  accent-color: var(--accent-color);
}

/* Smooth scroll for in-page anchors like Learn More */
html { scroll-behavior: smooth; }

/* Prevent fixed header from covering target section */
#experience { scroll-margin-top: 120px; }
@media (max-width: 768px) {
  #experience { scroll-margin-top: 90px; }
}

/* ===== Privacy Page ===== */
.policy-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, rgba(169,140,130,0.15), rgba(0,0,0,0));
}
.policy-hero .policy-hero-inner { text-align: center; }
.policy-hero .subtitle {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(169,140,130,0.22);
  color: #dcc3bb;
  letter-spacing: 3px;
  font-weight: 600;
}
.policy-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4.6vw, 3rem);
}
.policy-hero .lede {
  max-width: 850px;
  margin: 0 auto;
  color: #cfcfcf;
  font-size: 1.05rem;
}

.policy-content { padding: 20px 0 80px; }
.policy-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }

.policy-toc { position: sticky; top: 110px; align-self: start; }
.policy-toc h3 { margin: 8px 0 10px; font-size: 1rem; color: #c9b2aa; letter-spacing: 1px; }
.policy-toc ul { list-style: none; padding: 0; margin: 0; }
.policy-toc li { margin: 6px 0; }
.policy-toc a { color: #dcdcdc; text-decoration: none; display: inline-block; padding: 6px 0; }
.policy-toc a:hover { color: var(--accent-color); }

.policy-article {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 26px;
}
.policy-article h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin: 18px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.policy-article p, .policy-article li { color: #e5e5e5; line-height: 1.8; }
.policy-article ul { padding-left: 18px; }
.policy-article a { color: #e6d0c9; text-decoration: underline; }

@media (max-width: 1024px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; top: auto; margin-bottom: 10px; }
  .policy-article { padding: 22px 18px; }
}

@media (max-width: 640px) {
  .policy-hero { padding: 60px 0 24px; }
  .policy-hero .subtitle { letter-spacing: 2px; }
}

/* ===== Services Page Responsive ===== */
@media (max-width: 1280px) {
  .service-page-section .container { gap: 28px; }
  .service-page-content { padding: 10px 0; }
}

@media (max-width: 1024px) {
  /* Stack image and content */
  .service-page-section .container { flex-direction: column; gap: 20px; }
  .service-page-image, .service-page-content { width: 100%; }
  .service-page-image .pinnacle-image img { width: 100%; height: auto; }

  /* Keep logical reading order for alt sections */
  .service-page-section.alt-layout .service-page-image { order: 1; }
  .service-page-section.alt-layout .service-page-content { order: 2; }

  /* Tighter typography */
  .service-page-section .subtitle { font-size: 0.9rem; letter-spacing: 2px; }
  .service-page-section h2 { font-size: clamp(1.4rem, 3.6vw, 1.8rem); margin-bottom: 10px; }
}

@media (max-width: 820px) {
  .service-page-section .container { gap: 18px; }
  .service-page-content p, .service-page-content li { font-size: 0.98rem; line-height: 1.7; }
}

@media (max-width: 768px) {
  .service-page-section { padding: 40px 0; }
  .service-page-content .btn { margin-top: 10px; }
  .service-page-content .jet-specs h4 { margin-top: 10px; }
}

@media (max-width: 640px) {
  .service-page-section .container { width: 94%; }
  .service-page-content .btn { width: 100%; }
  .image-caption-service { font-size: 0.9rem; padding: 8px 10px; }
}

@media (max-width: 480px) {
  .service-page-section { padding: 28px 0; }
  .service-page-section h2 { font-size: 1.3rem; }
  .service-page-content ul { padding-left: 18px; }
}

/* Footer titles: centered with a short line below */
.site-footer .footer-title {
  position: relative;
  text-align: center;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .footer-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: var(--accent-color);
  opacity: 0.7;
  border-radius: 2px;
}

/* Footer contact rows: keep icon left, text right on mobile */
@media (max-width: 768px) {
  .site-footer .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px;
  }
  .site-footer .contact-item i { min-width: 18px; }
}

.custom-bullets {
  list-style: none;              /* remove default bullets */
  padding: 0;
  margin: 0;
}

.custom-bullets li {
  position: relative;
  padding-left: 28px;            /* space for bullet */
  margin-bottom: 14px;
  line-height: 1.7;
  color: #bdbdbd;                /* premium grey */
}

.custom-bullets li::before {
  content: "•";                  /* bullet icon */
  position: absolute;
  left: 0;
  top: 0.35em;                   /* vertical center with text */
  font-size: 22px;               /* bullet size */
  line-height: 1;
  color: #9e9e9e;
}

.service-page-content p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 16px;
}

.jet-bullet {
  font-size: 3.2em;
  line-height: 0.6;
  width: 0.6em;
  flex-shrink: 0;
  color: #9e9e9e;
}

.jet-text {
  line-height: 1.7;
  color: #bdbdbd;
}

.service-page-content p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.jet-bullet {
  font-size: 3.2em;
  line-height: 0.6;
  width: 0.6em;
  flex-shrink: 0;
  color: #9e9e9e;
}

.jet-text {
  line-height: 1.7;
  color: #bdbdbd;
}

.bold-text {
  font-weight: bold;   /* makes the text bold */
  text-align: start;  /* aligns the text to the center */
}
