/* --- Crop Tech Design System --- */

:root {
    --bg-primary: #050b08;
    --bg-secondary: #0a140f;
    --bg-card: rgba(10, 20, 15, 0.55);
    --bg-glass: rgba(10, 20, 15, 0.5);
    --border-glass: rgba(16, 185, 129, 0.15);
    --border-glass-hover: rgba(52, 211, 153, 0.35);
    
    --accent-emerald: #10b981;
    --accent-mint: #34d399;
    --accent-mint-rgb: 52, 211, 153;
    --accent-glow: rgba(52, 211, 153, 0.2);
    
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
    overflow: hidden;
}

.section {
    padding: 8rem 0;
}

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

ul {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-emerald);
}

/* --- UI Common Utilities --- */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-mint);
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.section-header.text-center .section-title {
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 600px;
}

.section-header.text-center .section-subtitle {
    margin: 1rem auto 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-emerald);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--accent-mint);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(52, 211, 153, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-mint);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Glassmorphic Card --- */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition-medium);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08);
}

/* --- Frosted Glass Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 11, 8, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(5, 11, 8, 0.85);
    padding: 0.5rem 0;
    border-color: rgba(52, 211, 153, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.logo-image {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(52, 211, 153, 0.5));
}

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

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-mint);
    transition: var(--transition-fast);
}

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

.nav-cta-btn {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--accent-emerald);
    color: var(--accent-mint);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.08);
}

.nav-cta-btn:hover {
    background: var(--accent-emerald);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none !important;
}

/* --- Spotlight (Hero) Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--bg-primary);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(5, 11, 8, 0.45) 0%, 
        rgba(5, 11, 8, 0.85) 60%, 
        var(--bg-primary) 100%);
    z-index: -1;
}

.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 780px;
    text-align: left;
    margin-top: 4rem;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: var(--accent-mint);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-mint);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-mint);
    display: inline-block;
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.9s ease forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    animation: fadeInUp 1.1s ease forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    cursor: pointer;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-mint);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    height: 200px;
    border-radius: 12px;
}

.about-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: saturate(0.8) contrast(1.1);
}

.about-image-wrapper:hover .about-featured-img {
    transform: scale(1.05);
    filter: saturate(1.15) contrast(1.1);
}

.about-left .about-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-left .about-text {
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

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

.counter-card {
    padding: 1.75rem;
    text-align: center;
    border-radius: 12px;
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-mint);
}

.counter-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-mint);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.about-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateX(8px);
}

.feature-icon {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-mint);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.service-icon-wrapper {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-medium);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--accent-mint);
    transition: var(--transition-medium);
}

.service-card:hover .service-icon-wrapper svg {
    color: var(--bg-primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.25rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-mint);
    font-weight: bold;
}

/* --- Packages Section --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    align-items: stretch;
}

.package-card {
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.package-card.featured {
    border-color: var(--accent-mint);
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 15px 45px rgba(52, 211, 153, 0.05);
}

.package-card.featured:hover {
    box-shadow: 0 20px 50px rgba(52, 211, 153, 0.12);
}

.featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent-emerald);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.package-header {
    margin-bottom: 2.5rem;
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 40px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-mint);
}

.package-price .price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}

.package-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.package-features {
    margin-bottom: 3rem;
}

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

.package-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tick-icon {
    color: var(--accent-mint);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.package-action {
    margin-top: auto;
}

/* --- Client & Testimonials Section --- */
.marquee-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 3rem 0;
    background: rgba(10, 20, 15, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.marquee-item:hover {
    color: var(--accent-mint);
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.25);
}

.item-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    display: inline-block;
}

.scroll-left .marquee-content {
    animation: scrollLeft 32s linear infinite;
}

.scroll-right .marquee-content {
    animation: scrollRight 32s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* --- Testimonials --- */
.testimonials-container {
    margin-top: 7rem;
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    padding: 3.5rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-family: 'Space Grotesk', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(52, 211, 153, 0.1);
    position: absolute;
    top: 1rem;
    left: 2rem;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--border-glass-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-mint);
    font-size: 0.95rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.author-rating {
    margin-left: auto;
    letter-spacing: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    border-color: var(--accent-mint);
    color: var(--accent-mint);
    background: rgba(52, 211, 153, 0.04);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    opacity: 0.3;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--accent-mint);
    opacity: 1;
}

/* --- Contact & Enquiry Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: start;
}

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

.info-card {
    padding: 2.5rem;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.info-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-link-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.info-link-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(52, 211, 153, 0.1);
    transform: translateX(4px);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-details .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-details .value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.15rem;
}

.locations-card {
    padding: 2.5rem;
}

.locations-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    padding: 1.15rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-fast);
}

.location-item:hover, .location-item.active {
    background: rgba(16, 185, 129, 0.03);
    border-color: rgba(52, 211, 153, 0.2);
}

.loc-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--text-muted);
    border-radius: 50%;
    margin-top: 0.45rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.location-item.active .loc-bullet {
    background-color: var(--accent-mint);
    box-shadow: 0 0 8px var(--accent-mint);
}

.loc-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.loc-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.loc-tag {
    font-size: 0.75rem;
    color: var(--accent-mint);
    background: rgba(52, 211, 153, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* --- Mock Map Graphic --- */
.mock-map-canvas {
    height: 180px;
    background-color: #030604;
    background-image: 
        radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=800');
    background-size: cover;
    background-blend-mode: color-dodge;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(to right, rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
}

.map-pin {
    position: absolute;
    font-size: 1.5rem;
    transform: translate(-50%, -100%);
    animation: pulsePin 2.2s infinite;
    top: 50%;
    left: 50%;
    transition: top var(--transition-medium), left var(--transition-medium);
    z-index: 10;
}

.map-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 11, 8, 0.85);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: var(--accent-mint);
    white-space: nowrap;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: opacity var(--transition-medium);
}

/* --- Form --- */
.contact-form-wrapper {
    padding: 3rem;
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-instructions {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.85rem 1.15rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-mint);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.08);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* --- Footer --- */
footer {
    background: #030604;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.80fr 0.80fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col .logo {
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    max-width: 320px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.footer-socials a:hover {
    border-color: var(--accent-mint);
    color: var(--accent-mint);
    background: rgba(52, 211, 153, 0.04);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.footer-col li {
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-mint);
    padding-left: 4px;
}

.foot-loc {
    color: var(--text-primary);
    font-weight: 500;
}

.foot-email {
    color: var(--accent-mint);
    font-weight: 500;
}

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

/* --- Animations Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -8px);
    }
    60% {
        transform: translate(-50%, -4px);
    }
}

@keyframes pulsePin {
    0%, 100% {
        transform: translate(-50%, -100%) scale(1);
    }
    50% {
        transform: translate(-50%, -110%) scale(1.05);
    }
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .packages-grid > *:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    .hero-title {
        font-size: 2.65rem;
    }
    .hero-description {
        font-size: 1.05rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 11, 8, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        transition: var(--transition-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: inline-block !important;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .packages-grid > *:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .author-rating {
        margin-left: 0;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
