@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN TOKENS & ROOT (Brand Green Style)
   ========================================== */
:root {
    --primary: #0b3a24;         /* Brand Dark Green */
    --primary-light: #164e33;   /* Brand Emerald Green */
    --primary-rgb: 11, 58, 36;
    --secondary: #0b3a24;       /* Base Green */
    --accent: #c5a059;          /* Gold Accent */
    --accent-dark: #a9843f;
    --accent-light: #fdfbf7;
    --bg-alabaster: #faf9f6;
    --bg-card: #ffffff;
    --text-dark: #0e1525;       /* Dark Navy */
    --text-muted: #6b7280;
    --border-color: #eae9e2;
    --border-color-light: rgba(234, 233, 226, 0.4);
    
    --shadow-soft: 0 20px 40px rgba(11, 58, 36, 0.02), 0 5px 15px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 30px 60px rgba(11, 58, 36, 0.08);
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ==========================================
   RESET & SYSTEM BASICS
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-image: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.04) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(11, 58, 36, 0.04) 0%, transparent 45%),
                      radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.03) 0%, transparent 50%);
    background-color: var(--bg-alabaster);
    color: var(--text-dark);
    line-height: 1.625;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   LAYOUT STRUCTURE
   ========================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 7.5rem 0;
    position: relative;
}

.section-bg {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.grid {
    display: grid;
    gap: 2.5rem;
}

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

/* Section Headers */
.section-header {
    max-width: 650px;
    margin-bottom: 4rem;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.subtitle {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(11, 58, 36, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================
   BUTTONS & LINKS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.5rem;
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px; /* Pill Shape */
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 58, 36, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(11, 58, 36, 0.03);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.btn-text span {
    margin-right: 0.5rem;
    position: relative;
}

.btn-text span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.btn-text:hover span::after {
    transform: scaleX(1);
}

.btn-text i {
    transition: var(--transition-fast);
}

.btn-text:hover i {
    transform: translateX(4px);
}

/* ==========================================
   MODERN FLOATING NAVBAR (Glassmorphic)
   ========================================== */
.header-area {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1280px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50px;
    padding: 0.85rem 2.5rem;
    box-shadow: 0 15px 35px rgba(11, 58, 36, 0.03);
    transition: var(--transition-smooth);
}

/* Scrolled visual transitions */
.header-scrolled {
    top: 0.75rem;
    background-color: rgba(11, 58, 36, 0.82); /* Translucent dark green glass style */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 20px 45px rgba(11, 58, 36, 0.2);
    padding: 0.65rem 2.5rem;
}

.header-scrolled .nav-link {
    color: #ffffff;
}

.header-scrolled .nav-link:hover,
.header-scrolled .nav-link.active {
    color: var(--accent);
}

.header-scrolled .nav-link::after {
    background-color: var(--accent);
}

.header-scrolled .logo img {
    filter: brightness(0) invert(1);
}

.header-scrolled .burger-line {
    background-color: #ffffff;
}

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

/* Make header button compact and elegant */
.header-area .btn {
    padding: 0.55rem 1.5rem;
    font-size: 0.85rem;
    min-height: auto;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* Open states for toggle */
.mobile-nav-open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-open .burger-line:nth-child(2) {
    opacity: 0;
}
.mobile-nav-open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION (Floating Widgets & Mesh)
   ========================================== */
.hero {
    min-height: 95vh;
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
}

.hero .grid-2 {
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(11, 58, 36, 0.05);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--primary); /* Logo Dark Green */
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #cc1f1f; /* Logo Red Accent */
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    padding-right: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 58, 36, 0.06);
    animation: float-slow 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Floating widgets */
.floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 1.35rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.floating-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(11, 58, 36, 0.1);
}

.floating-widget-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.floating-widget-icon.green {
    background: #10b981;
}

.floating-widget-icon.gold {
    background: var(--accent);
}

.floating-widget h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-widget p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-widget-1 {
    top: 15%;
    left: -8%;
    animation: float-offset 5s ease-in-out infinite;
}

.floating-widget-2 {
    bottom: 12%;
    right: -2%;
    animation: float-slow 7s ease-in-out infinite;
}

/* Keyframe animations for real-time floating depth */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-offset {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ==========================================
   BRANDS SECTION
   ========================================== */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 4rem;
}

.brands-title {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.brand-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: default;
}

.brand-logo-item img {
    max-height: 48px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   TIMELINE & ABOUT SUMMARY
   ========================================== */
.about-summary .grid-2 {
    align-items: center;
    gap: 5rem;
}

.step-timeline {
    position: relative;
    padding-left: 2.75rem;
    margin-top: 2rem;
}

.step-timeline::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.95rem;
    bottom: 0.5rem;
    width: 2px;
    border-left: 2px dotted var(--accent);
}

.step-item {
    position: relative;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -2.75rem;
    top: 0.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid var(--accent);
    box-shadow: 0 5px 15px rgba(11, 58, 36, 0.1);
    z-index: 2;
    transition: var(--transition-fast);
}

.step-content {
    transition: var(--transition-fast);
}

/* Micro-animations */
.step-item:hover .step-number {
    transform: scale(1.1);
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--primary);
}

.step-item:hover .step-content {
    transform: translateX(6px);
}

.step-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================
   SERVICES GRID (Elevated Luxury Cards)
   ========================================== */
.services-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3.25rem 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Shadow numbers */
.service-card-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: var(--font-headings);
    font-size: 2.85rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.12);
    transition: var(--transition-smooth);
    user-select: none;
    pointer-events: none;
}

.service-card:hover .service-card-number {
    color: rgba(197, 160, 89, 0.28);
    transform: translateY(-4px) scale(1.05);
}

/* Directory Page specific style */
.service-directory-card {
    padding: 0;
}

.service-directory-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-alabaster);
    position: relative;
}

.service-directory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-directory-card:hover .service-directory-img img {
    transform: scale(1.04);
}

.service-directory-content {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-directory-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color-light);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(11, 58, 36, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card-icon i {
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

/* Hover transitions */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.service-card:hover .service-card-icon {
    background-color: var(--primary);
}

.service-card:hover .service-card-icon i {
    color: #ffffff;
}

.service-card:hover .service-card-link {
    color: var(--accent);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* ==========================================
   INFINITE MARQUEE WALL OF LOVE (Testimonials)
   ========================================== */
.testimonials-marquee-section {
    background-color: var(--bg-alabaster);
    padding: 7.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-marquee-section .subtitle {
    color: var(--primary-light);
    background: rgba(11, 58, 36, 0.05);
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee-scroll 32s linear infinite;
    width: max-content;
}

.marquee-track.reverse {
    animation: marquee-scroll-reverse 32s linear infinite;
}

/* Pause scroll on hover */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(calc(-50% - 1rem));
    }
    100% {
        transform: translateX(0);
    }
}

/* Redesigned international cards */
.marquee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.25rem;
    width: 380px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    white-space: normal;
    transition: var(--transition-fast);
}

.marquee-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.marquee-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.avatar-green { background-color: #10b981; }
.avatar-gold { background-color: var(--accent); }
.avatar-blue { background-color: #3b82f6; }
.avatar-coral { background-color: #f97316; }
.avatar-purple { background-color: #8b5cf6; }
.avatar-teal { background-color: #14b8a6; }

.marquee-card-userinfo h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.marquee-card-userinfo p {
    font-size: 0.775rem;
    color: var(--text-muted);
}

.marquee-card-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    flex-grow: 1;
}

.marquee-stars {
    color: var(--accent);
    font-size: 0.85rem;
    display: flex;
    gap: 0.2rem;
    margin-top: auto;
}

/* ==========================================
   PARTNER WHY CHOOSE US
   ========================================== */
.why-choose-us .grid-2 {
    align-items: center;
    gap: 5rem;
}

/* ==========================================
   CONTACT COBALT/GREEN FORM CONTAINER (SPLIT)
   ========================================== */
.contact-section-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.contact-split-img {
    position: relative;
    overflow: hidden;
}

.contact-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-split-form-container {
    background-color: var(--primary);
    padding: 4.5rem;
    color: #ffffff;
}

.contact-split-form-container h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-split-form-container p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

/* Floating label details inside Cobalt */
.form-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--primary);
    padding: 0 0.4rem;
}

/* Normal contact page form specific style */
.contact-page-form-container {
    background-color: var(--primary);
    padding: 4rem;
    border-radius: var(--border-radius-md);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.contact-page-form-container h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-page-form-container .form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.contact-page-form-container .form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.contact-page-form-container .form-group label {
    color: rgba(255, 255, 255, 0.65);
}

.contact-page-form-container .form-input:focus ~ label,
.contact-page-form-container .form-input:not(:placeholder-shown) ~ label {
    color: var(--accent);
    background: var(--primary);
}

/* ==========================================
   HOMEPAGE CONTACT SECTION REDESIGN
   ========================================== */
.contact-home-grid {
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    gap: 5rem;
    align-items: center;
}

.contact-home-info h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    color: var(--text-dark);
}

.contact-home-channels {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-channel-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.contact-channel-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.contact-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11, 58, 36, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.contact-channel-details h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-channel-details p,
.contact-channel-details a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Home form card */
.contact-home-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary);
}

.contact-home-card .form-input {
    background: var(--bg-alabaster);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.contact-home-card .form-input:focus {
    border-color: var(--primary);
    background: #ffffff;
}

.contact-home-card .form-group label {
    color: var(--text-muted);
}

.contact-home-card .form-input:focus ~ label,
.contact-home-card .form-input:not(:placeholder-shown) ~ label {
    color: var(--primary);
    background: #ffffff;
}

/* ==========================================
   CONTACT INFORMATIONS LIST
   ========================================== */
.contact-grid {
    grid-template-columns: 4.5fr 7.5fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(11, 58, 36, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.contact-info-text p, .contact-info-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-socials-list {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.map-section {
    padding: 0 0 7.5rem 0;
}

.map-frame {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    line-height: 0;
}

/* ==========================================
   FOOTER (Dark Navy Theme)
   ========================================== */
.footer {
    background-color: var(--text-dark); /* Dark Navy */
    color: #ffffff;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    grid-template-columns: 4fr 3fr 5fr;
    gap: 4.5rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-socials ul {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.925rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.25rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-card {
    display: flex;
    gap: 1.25rem;
}

.footer-contact-card i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.footer-contact-card h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.footer-contact-card p, .footer-contact-card a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-contact-card a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
}

/* ==========================================
   EDITORIAL SERVICES DETAIL PAGE LAYOUT
   ========================================== */
.service-header {
    padding-top: 13rem;
    margin-bottom: 5rem;
    text-align: center;
}

.service-header .subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.service-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.15;
    color: var(--text-dark);
}

.service-body-grid {
    grid-template-columns: 4fr 8fr;
    gap: 5rem;
}

/* Sidebar lists links to other services */
.service-sidebar {
    position: sticky;
    top: 9rem;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-headings);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.sidebar-nav {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sidebar-nav-item {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-nav-item:last-child {
    border-bottom: none;
}

.sidebar-nav-link {
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
    background-color: var(--primary);
    color: #ffffff;
}

.sidebar-cta {
    margin-top: 2rem;
    background-color: rgba(11, 58, 36, 0.02);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.sidebar-cta h4 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Detail Content style */
.service-detail-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 4rem;
    box-shadow: var(--shadow-soft);
}

.service-detail-img {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.service-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-desc-lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-list-block {
    margin-top: 3rem;
}

.service-list-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-list-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-alabaster);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.service-list-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.service-list-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-list-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.service-sublist-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
}

.service-sublist-container h4 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.service-sublist-container ul {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.service-sublist-container li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-sublist-container li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ==========================================
   SCROLL REVEAL UTILITIES
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================
   MOBILE MENU DRAWER OVERLAY
   ========================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--text-dark);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2.25rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 10002;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem;
}

.mobile-menu-close:hover {
    transform: scale(1.15) rotate(90deg);
    color: var(--accent);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mobile-menu-link {
    font-family: var(--font-headings);
    font-size: 2.25rem;
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition-fast);
}

.mobile-menu-link:hover, .mobile-menu-link.active {
    color: var(--accent);
    padding-left: 0.75rem;
}

.mobile-menu-services {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.mobile-menu-services-btn {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-services-list {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-left: 1rem;
}

.mobile-menu-services-list.active {
    display: flex;
}

.mobile-menu-services-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.mobile-menu-services-list a:hover {
    color: var(--accent);
}

.mobile-menu-cta {
    margin-top: auto;
}

/* ==========================================
   MODAL DIALOG POPUP STYLING
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(14, 21, 37, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 600px;
    box-shadow: 0 30px 70px rgba(11, 58, 36, 0.12);
    padding: 3rem;
    position: relative;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dark);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-alabaster);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Modal Form Styles - overrides some elements to fit light background */
.modal-content .form-group label {
    color: var(--text-muted);
}

.modal-content .form-input {
    background: var(--bg-alabaster);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.modal-content .form-input:focus {
    border-color: var(--primary);
    background: #ffffff;
}

.modal-content .form-input:focus ~ label,
.modal-content .form-input:not(:placeholder-shown) ~ label {
    color: var(--primary);
    background: #ffffff;
}

/* Specific Direct CTA Box in Green Style */
.cta-direct {
    background-color: var(--primary);
    color: #ffffff;
    padding: 5.5rem 0;
    text-align: center;
}

.cta-direct-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.cta-direct-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.cta-direct-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Notebooks & Large Screens (max 1440px) */
@media (max-width: 1440px) {
    .hero-title { font-size: 3.25rem; }
    .hero-image img { height: 460px; }
}

/* Desktop & Tablets Land (max 1280px) */
@media (max-width: 1280px) {
    .container { max-width: 1140px; }
    .hero-title { font-size: 2.85rem; }
    .about-summary .grid-2 { gap: 3.5rem; }
    .services-grid { gap: 1.5rem; }
    .footer-grid { gap: 3rem; }
    .service-body-grid { gap: 3rem; }
}

/* Desktop Medium (max 1024px) */
@media (max-width: 1024px) {
    .container { max-width: 960px; }
    .section { padding: 6rem 0; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
    .hero-image img { height: 400px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-slide { min-width: calc(50% - 1rem); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid > *:first-child { grid-column: span 2; }
    .service-body-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: relative; top: 0; margin-bottom: 3rem; }
    .service-sidebar .sidebar-nav { display: grid; grid-template-columns: repeat(2, 1fr); }
    .service-sidebar .sidebar-nav-item { border-bottom: 1px solid var(--border-color); border-right: 1px solid var(--border-color); }
    .service-sidebar .sidebar-nav-item:nth-child(even) { border-right: none; }
    .service-sidebar .sidebar-nav-item:nth-last-child(-n+2) { border-bottom: none; }
    .contact-section-split { grid-template-columns: 1fr; }
    .contact-split-img { height: 350px; }
}

/* Tablets Portrait (max 820px) */
@media (max-width: 820px) {
    .container { max-width: 720px; }
    .hero .grid-2, .about-summary .grid-2, .contact-grid, .why-choose-us .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; padding-bottom: 6rem; }
    .hero-image-wrapper { padding-right: 0; margin-top: 3rem; max-width: 550px; margin-left: auto; margin-right: auto; }
    .hero-image img { height: auto; max-height: 450px; }
    .about-img-box { margin-bottom: 2rem; }
    .about-img img { height: 400px; }
    .form-card { padding: 2rem; }
    .service-detail-content { padding: 2.5rem; }
    .video-preview img { height: 320px; }
}

/* Small Tablets / Large Mobile (max 768px) */
@media (max-width: 768px) {
    .floating-widget {
        display: none !important;
    }
    .header-area {
        top: 0.5rem;
        width: calc(100% - 1.5rem);
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
    }
    .header-scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 0.65rem 1.5rem;
    }
    .nav-menu { display: none; }
    .mobile-nav-toggle { display: block; }
    .logo img { height: 32px; }
    .section-title { font-size: 2.15rem; }
    .hero-title { font-size: 2.25rem; }
    .testimonial-slide { min-width: 100%; }
    .slider-controls { margin-top: 2rem; }
    .service-list-grid, .service-sublist-container ul { grid-template-columns: 1fr; }
    .service-header h1 { font-size: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .contact-split-form-container { padding: 2.5rem; }
    .modal-content { padding: 2rem; }
}

/* Medium Mobile (max 480px) */
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > *:first-child { grid-column: span 1; }
    .service-sidebar .sidebar-nav { grid-template-columns: 1fr; }
    .service-sidebar .sidebar-nav-item { border-right: none; }
    .service-sidebar .sidebar-nav-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-color); }
    .service-sidebar .sidebar-nav-item:last-child { border-bottom: none; }
    .mobile-menu-link { font-size: 1.75rem; }
    .floating-widget-1 { left: -3%; top: 10%; }
    .floating-widget-2 { right: -2%; bottom: 8%; }
    .contact-page-form-container { padding: 2rem; }
}

/* Small Mobile (max 320px) */
@media (max-width: 320px) {
    .section-title { font-size: 1.75rem; }
    .hero-title { font-size: 1.85rem; }
    .logo img { height: 30px; }
}

/* ==========================================
   PAGE PRELOADER STYLE
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary); /* Deep Brand Green */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    opacity: 1;
    visibility: visible;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    height: 48px;
    width: auto;
    animation: logo-pulse 1.8s ease-in-out infinite;
    z-index: 2;
}

.loader-spinner {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(197, 160, 89, 0.12);
    border-top-color: var(--accent); /* Gold accent spinner */
    border-radius: 50%;
    animation: spinner-rotate 1.2s linear infinite;
    z-index: 1;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes spinner-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================
   PREMIUM SERVICES CATALOGUE REDESIGN
   ========================================== */
.service-header-hero {
    position: relative;
    background: linear-gradient(-45deg, var(--primary) 0%, #052214 35%, #0b3a24 70%, #03140c 100%);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
    padding: 8rem 0 6rem 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 2px solid rgba(197, 160, 89, 0.15);
    overflow: hidden;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.service-header-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.service-header-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.service-header-hero h1 span {
    color: var(--accent); /* Gold Accent */
}

.service-header-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Cards */
.premium-service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 25px 50px rgba(11, 58, 36, 0.1);
}

.premium-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #faf9f6;
    border-bottom: 1px solid var(--border-color);
}

.premium-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-service-card:hover .premium-card-img-wrapper img {
    transform: scale(1.04);
}

.premium-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    z-index: 10;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Premium About Cards Redesign */
.premium-about-card {
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(197, 160, 89, 0.03) 0%, #ffffff 80%);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent);
    border-radius: var(--border-radius-md);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.015);
}

.premium-about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 25px 50px rgba(11, 58, 36, 0.1);
}

.about-card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, rgba(11, 58, 36, 0.05) 0%, rgba(197, 160, 89, 0.08) 100%);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
}

.premium-about-card:hover .about-card-icon-box {
    background: var(--primary);
    border-color: var(--primary);
}

.premium-about-card:hover .about-card-icon-box i {
    color: #ffffff !important;
}

.about-card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(197, 160, 89, 0.12);
    line-height: 1;
    transition: all 0.4s ease;
}

.premium-about-card:hover .about-card-number {
    color: rgba(197, 160, 89, 0.3);
    transform: scale(1.08);
}

.about-card-watermark {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    font-size: 8rem;
    color: rgba(197, 160, 89, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-about-card:hover .about-card-watermark {
    color: rgba(197, 160, 89, 0.06);
    transform: translate(-10px, -10px) scale(1.05) rotate(-5deg);
}

.premium-about-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.premium-about-card p, .premium-about-card ul {
    position: relative;
    z-index: 2;
}

.premium-card-body {
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: var(--transition-smooth);
}

.premium-service-card:hover .premium-card-body h3 {
    color: var(--accent); /* Golden color transition on hover */
}

.premium-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

/* Bullet list of details */
.premium-details-list {
    margin-bottom: 2rem;
    margin-top: auto; /* Push items to bottom */
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.premium-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.premium-details-list li i {
    color: var(--accent);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.premium-card-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2.25rem;
    background-color: #faf9f6;
}

.premium-enquiry-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-enquiry-btn i {
    transition: transform 0.4s ease;
}

.premium-enquiry-btn:hover i {
    transform: translateX(3px);
}

/* ==========================================
   SERVICES NAV DROPDOWN MENU
   ========================================== */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(11, 58, 36, 0.08);
    padding: 1.5rem;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

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

.nav-dropdown-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.65rem 0.85rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-dropdown-item:hover {
    background-color: rgba(11, 58, 36, 0.04);
    color: var(--accent);
    padding-left: 1.15rem;
}

.nav-dropdown-item i {
    font-size: 0.95rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

/* Mobile Menu Services Sub-navigation */
.mobile-menu-dropdown-wrapper {
    width: 100%;
}

.mobile-menu-services-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.5rem 0;
    font-family: inherit;
}

.mobile-menu-services-list {
    display: none;
    padding-left: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-menu-services-list.active {
    display: flex;
}

.mobile-menu-sublink {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-sublink:hover,
.mobile-menu-sublink.active {
    color: var(--accent);
}

/* ==========================================
   GALLERY & LIGHTBOX STYLES
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.gallery-item {
    cursor: pointer;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 58, 36, 0.9) 0%, rgba(11, 58, 36, 0.4) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

.gallery-category {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-category {
    transform: translateY(0);
}

/* Lightbox Modal CSS */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 58, 36, 0.95);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: #ffffff;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Navigation buttons & close */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    z-index: 10001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2.5rem;
}

.lightbox-next {
    right: 2.5rem;
}

@media (max-width: 991px) {
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }
    .lightbox-close { top: 1.5rem; right: 1.5rem; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
}

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

