/* ==========================================================================
   VP SERVICES - MODERN STYLESHEET (Since 2025)
   ========================================================================== */

/* Demo Notice Bar Styling */
.demo-notice-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: linear-gradient(90deg, var(--primary), #071c12);
    border-bottom: 1px solid rgba(22, 163, 74, 0.15);
    color: var(--white);
    z-index: 1005;
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    transition: var(--transition);
}

.notice-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.notice-text {
    letter-spacing: 0.3px;
}

.notice-text strong {
    color: var(--accent);
}

.notice-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    line-height: 1;
    position: relative;
    z-index: 1010; /* Put above everything to guarantee clickable pointer events */
    padding: 4px 8px; /* High-precision click target area */
}

.notice-close:hover {
    opacity: 1;
    color: var(--accent);
}

body {
    padding-top: 38px; /* Offset for the sticky notice bar */
    transition: padding-top 0.3s ease;
}

body.notice-closed {
    padding-top: 0 !important;
}

body.notice-closed .demo-notice-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Design Variables */
:root {
    --primary: #0b2b1b;
    --primary-rgb: 11, 43, 27;
    --primary-light: #16a34a;
    --primary-light-rgb: 22, 163, 74;
    --primary-hover: #15803d;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --dark: #0f172a;
    --light: #f8fafc;
    --light-accent: #f1f5f9;
    --text: #334155;
    --text-light: #64748b;
    --text-white: #ffffff;
    --white: #ffffff;
    
    /* System & Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 25px rgba(22, 163, 74, 0.35);
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

ul {
    list-style: none;
}

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

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

/* 2. Utility Layouts */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-1 { margin-top: 1rem; }

/* 3. Buttons & Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.icon-inline {
    width: 18px;
    height: 18px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4. Header & Navigation */
.main-header {
    position: fixed;
    top: 38px; /* Offset by notice bar height initially */
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95); /* Light glass background to accommodate logo white background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    z-index: 1000;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

body.notice-closed .main-header {
    top: 0 !important;
}

.main-header.scrolled {
    height: 70px;
    top: 38px; /* Keep header visible under notice bar when scrolled */
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

body.notice-closed .main-header.scrolled {
    top: 0 !important;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 44px;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.8); /* Dark slate text for white-background header */
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

.call-header-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--dark); /* Dark bars to be visible on white header background */
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 1023px) {
    .desktop-nav, .call-header-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* 5. Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--primary);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 1010;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    transform: translateX(-320px);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.logo-title-drawer {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.close-drawer {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.drawer-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    transition: var(--transition);
}

.drawer-link:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.drawer-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.drawer-phone {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.drawer-phone:hover {
    color: var(--primary-light);
}

.drawer-cta {
    margin-top: 1.5rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* 6. Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 8rem;
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.hero-grass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(11, 43, 27, 0.85), rgba(7, 28, 18, 0.98)), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2H4c-1 0-2-1-2-2v-4c0-1-1-2-2-2m54-36c-2 0-3 1-4 2v4c0 1-1 2-2 2H4c-1 0-2-1-2-2V8c0-1-1-2-2-2' fill='%2316a34a' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.badge-ribbon {
    display: inline-flex;
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.15;
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .hero-features {
        flex-direction: row;
        gap: 2rem;
    }
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(22, 163, 74, 0.2);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Hero Visual / Glassmorphic Card */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 0;
}

.visual-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.visual-card:hover .visual-image {
    transform: scale(1.05);
}

.visual-body {
    padding: 2rem 2.5rem 3rem 2.5rem;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.visual-tag {
    background-color: rgba(22, 163, 74, 0.15);
    color: var(--primary-light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.visual-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.visual-main-text {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.visual-sub-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.visual-quick-booking {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
}

.glow-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.booking-status {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Graphic floating elements */
.graphic-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.elem {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.elem-svg {
    width: 22px;
    height: 22px;
}

.elem-solar {
    background-color: #0284c7;
    top: 15%;
    right: -15px;
    transform: rotate(15deg);
    animation: float-y 4s ease-in-out infinite;
}

.elem-garden {
    background-color: var(--primary-light);
    bottom: 25%;
    left: -20px;
    transform: rotate(-10deg);
    animation: float-y 4.5s ease-in-out infinite 0.5s;
}

.elem-renovation {
    background-color: var(--accent);
    color: var(--dark);
    top: 55%;
    right: -10px;
    transform: rotate(5deg);
    animation: float-y 5s ease-in-out infinite 1s;
}

@keyframes float-y {
    0% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
    100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
}

.elem-solar { --rot: 15deg; }
.elem-garden { --rot: -10deg; }
.elem-renovation { --rot: 5deg; }

/* 7. About Us Section */
.about-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.section-header {
    max-width: 650px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    color: var(--dark);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }
}

.about-image-collage {
    position: relative;
    width: 100%;
    height: 400px;
}

.collage-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    background-color: var(--primary);
    background-image: linear-gradient(135deg, rgba(11, 43, 27, 0.2), rgba(11, 43, 27, 0.8)), url("about_gardening.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    overflow: hidden;
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(22, 163, 74, 0.15), transparent 70%);
}

.collage-badge {
    position: relative;
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.collage-side {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 60%;
    background-color: var(--accent);
    background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.7)), url("about_solar.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.bullet-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.bullet-icon svg {
    width: 14px;
    height: 14px;
}

/* 8. Services Section */
.services-section {
    padding: 8rem 0;
    background-color: var(--light-accent);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
}

.services-grid {
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.service-image-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 163, 74, 0.15);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(22, 163, 74, 0.08);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 30px;
    height: 30px;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.service-features {
    border-top: 1px solid var(--light-accent);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '•';
    color: var(--primary-light);
    font-size: 1.2rem;
}

/* Highlight Card Style */
.service-card.highlight-card {
    background: linear-gradient(145deg, var(--primary), #071c12);
    color: var(--white);
}

.service-card.highlight-card .service-card-title {
    color: var(--white);
}

.service-card.highlight-card .service-card-text {
    color: rgba(255, 255, 255, 0.7);
}

.service-card.highlight-card .service-icon-wrap {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.service-card.highlight-card:hover .service-icon-wrap {
    background-color: var(--accent);
    color: var(--dark);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}

.service-card.highlight-card .service-features {
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card.highlight-card .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.highlight-card .service-features li::before {
    color: var(--accent);
}

/* 9. Booking Section */
.booking-section {
    padding: 8rem 0;
    background-color: var(--primary);
    background-image: linear-gradient(to bottom, rgba(11, 43, 27, 0.97), rgba(7, 28, 18, 0.99)), url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10H90V90H10z' fill='none' stroke='%2322c55e' stroke-opacity='0.02' stroke-width='1'/%3E%3C/svg%3E");
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.badge-accent {
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.booking-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .booking-title {
        font-size: 3rem;
        line-height: 1.2;
    }
}

.highlight-gold {
    color: var(--accent);
}

.booking-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.direct-calls-block {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.call-intro {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white) !important;
    margin-bottom: 1rem !important;
}

.phones-flex {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

@media (min-width: 480px) {
    .phones-flex {
        flex-direction: row;
    }
}

.phone-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-card:hover {
    background-color: rgba(22, 163, 74, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.p-icon {
    font-size: 1.5rem;
}

.p-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.p-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

/* Glassmorphic Form Card */
.booking-card-wrap {
    display: flex;
    justify-content: center;
}

.form-glass-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

.form-glass-card label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.form-glass-card input, .form-glass-card select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-family: inherit;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-glass-card select option {
    background-color: var(--primary);
    color: var(--white);
}

.form-glass-card input:focus, .form-glass-card select:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.25);
}

.form-glass-card input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.error-msg {
    position: absolute;
    bottom: -18px;
    left: 0;
    font-size: 0.72rem;
    color: #ef4444;
    font-weight: 600;
    opacity: 0;
    transform: translateY(3px);
    transition: var(--transition);
    pointer-events: none;
}

.form-group.has-error .error-msg {
    opacity: 1;
    transform: translateY(0);
}

.form-group.has-error input, .form-group.has-error select {
    border-color: #ef4444 !important;
}

.submit-btn {
    margin-top: 1.5rem;
    height: 52px;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #071c12;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    z-index: 10;
}

.success-checkmark {
    width: 70px;
    height: 70px;
    background-color: rgba(22, 163, 74, 0.15);
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: var(--shadow-glow);
}

.success-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.success-note {
    font-size: 0.85rem !important;
    color: var(--accent) !important;
    margin-top: 1rem;
}

/* 10. Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    margin-top: 4rem;
}

.testimonial-card {
    background-color: var(--light-accent);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.client-service {
    display: block;
    font-size: 0.78rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* 11. Footer */
.main-footer {
    background-color: #071c12;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    border-top: 2px solid rgba(22, 163, 74, 0.1);
}

.footer-top {
    padding: 6rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-col-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links ul, .footer-services-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a, .footer-services-list a {
    transition: var(--transition);
}

.footer-links a:hover, .footer-services-list a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.c-icon {
    font-size: 1.1rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-phones a {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.footer-phones a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    background-color: #04100a;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.bottom-flex p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Animation Base Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    visibility: hidden;
}

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

/* Password Lock Screen Overlay */
.lock-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(11, 43, 27, 0.96), rgba(7, 28, 18, 0.99));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lock-screen-overlay.fade-out {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
}

.lock-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--white);
    transition: var(--transition);
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: lockPulse 2s infinite;
}

@keyframes lockPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.lock-logo {
    height: 52px;
    width: auto;
    margin: 0 auto 2rem auto;
    display: block;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.lock-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.lock-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.lock-card input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    font-family: inherit;
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
}

.lock-card input:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(22, 163, 74, 0.3);
}

.lock-error-msg {
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 600;
    opacity: 0;
    transform: translateY(3px);
    transition: var(--transition);
    text-align: center;
    pointer-events: none;
}

.lock-card .form-group.has-error .lock-error-msg {
    opacity: 1;
    transform: translateY(0);
}

.lock-card .form-group.has-error input {
    border-color: #ef4444 !important;
}

.unlock-btn {
    height: 52px;
    margin-top: 1.5rem;
}

.lock-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2rem;
}

.lock-hint strong {
    color: var(--accent);
}

/* Shake Animation on Error */
.lock-card.shake {
    animation: lockShake 0.4s ease;
}

@keyframes lockShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}
