/* ================================
   BALAJI BOREWELL DECHU - MAIN CSS
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A3D62;
    --secondary-color: #F39C12;
    --white-color: #FFFFFF;
    --dark-color: #1A1A1A;
    --gray-color: #F5F5F5;
    --text-color: #333333;
    --border-color: #DDDDDD;
    --success-color: #27AE60;
    --error-color: #E74C3C;
    --warning-color: #F39C12;
    --water-light: #E6F7FF;
    --water-mid: #72C7EC;
    --water-deep: #0D5E86;
    --farmer-earth: #7A5B3D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

button, input[type="button"], input[type="submit"] {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* ================================
   UTILITY CLASSES
   ================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.row-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section::before,
.section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.section::before {
    width: 360px;
    height: 360px;
    top: -210px;
    right: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 200, 236, 0.2), rgba(100, 200, 236, 0));
    animation: sectionOrbDrift 16s ease-in-out infinite;
}

.section::after {
    left: -14%;
    right: -14%;
    bottom: -58px;
    height: 100px;
    background:
        repeating-linear-gradient(
            -12deg,
            rgba(55, 141, 180, 0.06),
            rgba(55, 141, 180, 0.06) 8px,
            rgba(55, 141, 180, 0) 8px,
            rgba(55, 141, 180, 0) 18px
        );
    opacity: 0.7;
    animation: sectionLineSweep 11s linear infinite;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    animation: slideDown 0.6s ease;
    letter-spacing: 0.2px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -18px;
    width: 120px;
    height: 26px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(114, 199, 236, 0.36), rgba(114, 199, 236, 0));
    animation: sectionTitleGlow 3.4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.service-card,
.history-item,
.review-card,
.post-card,
.video-card,
.machine-spec-card,
.owner-card,
.pricing-calculator,
.booking-container,
.live-location,
.machine-card-animated,
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.28s ease;
}

.history-item:hover,
.review-card:hover,
.machine-spec-card:hover,
.live-location:hover,
.machine-card-animated:hover,
.pricing-calculator:hover,
.booking-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(10, 61, 98, 0.14);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.24s ease, background-position 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-size: 170% 170%;
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.32),
        rgba(255, 255, 255, 0) 48%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn::after {
    content: '';
    position: absolute;
    inset: -120% auto auto -30%;
    width: 55%;
    height: 300%;
    background: linear-gradient(110deg, rgba(255,255,255,0), rgba(255,255,255,0.38), rgba(255,255,255,0));
    transform: rotate(18deg) translateX(-180%);
    pointer-events: none;
    transition: transform 0.55s ease;
}

.btn:hover::after {
    transform: rotate(18deg) translateX(430%);
}

.btn-primary {
    background: linear-gradient(135deg, #0A3D62, #0F6A97);
    color: var(--white-color);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 10px 22px rgba(15, 106, 151, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, #F2A814, #E8871E);
    color: var(--white-color);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 10px 22px rgba(242, 168, 20, 0.34);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #0A3D62, #0F6A97);
    color: var(--white-color);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn i {
    transition: transform 0.25s ease;
}

.btn:hover i {
    transform: translateY(-1px) scale(1.06);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: var(--success-color);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

header {
    background: linear-gradient(100deg, rgba(8, 56, 86, 0.95), rgba(12, 87, 126, 0.92));
    color: var(--white-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transition: padding 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

header::before,
header::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

header::before {
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.09), rgba(255,255,255,0) 46%, rgba(255,255,255,0.06));
    opacity: 0.65;
}

header::after {
    width: 220px;
    height: 220px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 220, 255, 0.34), rgba(119, 220, 255, 0));
    animation: headerGlowShift 9s ease-in-out infinite;
}

header.is-scrolled {
    padding: 9px 0;
    background: linear-gradient(100deg, rgba(6, 45, 70, 0.97), rgba(10, 74, 108, 0.95));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top a {
    color: var(--white-color);
    margin: 0 15px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--white-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu > li:not(.nav-direct-actions) > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 4px;
}

.nav-menu > li:not(.nav-direct-actions) > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(243, 156, 18, 0.95), rgba(255,255,255,0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

nav a:hover {
    color: var(--secondary-color);
}

.nav-menu > li:not(.nav-direct-actions) > a:hover::after {
    transform: scaleX(1);
}

.nav-direct-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.nav-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff !important;
    border: 1px solid transparent;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.nav-direct-call {
    background: linear-gradient(135deg, #1d74b3, #2d9bd5);
}

.nav-direct-wa {
    background: linear-gradient(135deg, #18a957, #25d366);
}

.nav-direct-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 10px;
    width: 48px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.nav-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 20, 30, 0.48);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 88;
}

.nav-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.nav-toggle-box {
    width: 23px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.24s ease;
}

.nav-toggle.is-open {
    animation: menuTogglePulse 0.35s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    background: linear-gradient(135deg, #072f4c 0%, #0a4f73 42%, #1686a9 100%);
    color: var(--white-color);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="1000" height="300" fill="url(%23grid)"/></svg>');
    opacity: 0.17;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -66px;
    height: 168px;
    border-radius: 50% 50% 0 0;
    z-index: 2;
    opacity: 0.38;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 20%, rgba(154, 231, 255, 0.62), rgba(154, 231, 255, 0) 56%),
        linear-gradient(180deg, rgba(95, 189, 225, 0.42), rgba(53, 143, 183, 0));
    animation: heroWaveShift 6.8s ease-in-out infinite;
}

.hero-visual-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slide-stage {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.1s ease;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(1.08) contrast(1.05);
}

.hero-slide.is-active {
    opacity: 1;
    animation: heroSlideZoom 7.2s linear forwards;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 55, 81, 0.12), rgba(9, 54, 78, 0.04) 45%, rgba(8, 47, 66, 0.14));
}

.hero-slide-art-1 {
    background-image:
        linear-gradient(105deg, rgba(13, 67, 96, 0.38), rgba(10, 77, 103, 0.16) 55%, rgba(8, 53, 74, 0.38)),
        radial-gradient(circle at 22% 86%, rgba(73, 164, 112, 0.45), rgba(73, 164, 112, 0) 35%),
        linear-gradient(180deg, #95d8f4 0%, #5bb3da 48%, #6d8455 48%, #3e643c 100%);
}

.hero-slide-art-2 {
    background-image:
        linear-gradient(112deg, rgba(8, 53, 76, 0.48), rgba(11, 77, 102, 0.14) 54%, rgba(8, 48, 66, 0.3)),
        radial-gradient(circle at 76% 20%, rgba(255, 205, 120, 0.23), rgba(255, 205, 120, 0) 34%),
        linear-gradient(180deg, #95d0ef 0%, #59add2 46%, #846341 46%, #4f3b22 100%);
}

.hero-slide-art-3 {
    background-image:
        linear-gradient(112deg, rgba(8, 48, 71, 0.44), rgba(7, 67, 95, 0.15) 58%, rgba(5, 44, 63, 0.34)),
        radial-gradient(circle at 65% 14%, rgba(255, 214, 142, 0.28), rgba(255, 214, 142, 0) 30%),
        linear-gradient(180deg, #91d3ee 0%, #4ea6cb 44%, #678a5f 44%, #375835 100%);
}

.hero-shade-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), rgba(255,255,255,0) 42%),
        linear-gradient(95deg, rgba(6, 34, 51, 0.42) 0%, rgba(6, 38, 57, 0.3) 38%, rgba(5, 37, 54, 0.12) 70%, rgba(5, 34, 51, 0.36) 100%);
}

.hero-has-photo-slides .hero-shade-layer {
    background:
        radial-gradient(circle at 48% 20%, rgba(255,255,255,0.17), rgba(255,255,255,0) 48%),
        linear-gradient(96deg, rgba(4, 31, 46, 0.48) 0%, rgba(4, 37, 53, 0.3) 44%, rgba(4, 35, 49, 0.16) 72%, rgba(4, 29, 43, 0.4) 100%);
}

.hero-water-tap {
    position: absolute;
    right: 6%;
    top: 50%;
    width: 330px;
    height: 280px;
    transform: translateY(-44%);
    z-index: 2;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.tap-main-pipe {
    position: absolute;
    right: 92px;
    top: 44px;
    width: 198px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #cad9e5 0%, #94a9ba 42%, #dce8ef 100%);
    box-shadow: inset 0 -10px 16px rgba(58, 77, 93, 0.24), inset 0 8px 14px rgba(255, 255, 255, 0.38);
    animation: tapMetalShine 4.6s ease-in-out infinite;
}

.tap-neck {
    position: absolute;
    right: 72px;
    top: 42px;
    width: 54px;
    height: 106px;
    border-radius: 28px;
    background: linear-gradient(180deg, #dbe5ec 0%, #98acbc 68%, #7f95a6 100%);
    box-shadow: inset -8px 0 12px rgba(67, 84, 100, 0.22);
    animation: tapMetalShine 4.6s ease-in-out infinite;
}

.tap-mouth {
    position: absolute;
    right: 38px;
    top: 114px;
    width: 76px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(120deg, #edf4f9, #adbdca 52%, #93a6b4);
    box-shadow: inset 0 -6px 10px rgba(71, 88, 102, 0.22);
    animation: tapMetalShine 4.6s ease-in-out infinite;
}

.tap-flow {
    position: absolute;
    right: 60px;
    top: 142px;
    width: 34px;
    height: 146px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(179, 240, 255, 0.92), rgba(77, 188, 230, 0.92) 48%, rgba(46, 148, 193, 0.95));
    box-shadow: 0 0 0 2px rgba(197, 240, 255, 0.38), 0 12px 22px rgba(20, 89, 124, 0.33);
}

.tap-flow::before {
    content: '';
    position: absolute;
    inset: -20% -35%;
    background: repeating-linear-gradient(
        -30deg,
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.55) 9px,
        rgba(93, 203, 241, 0.15) 9px,
        rgba(93, 203, 241, 0.15) 18px
    );
    animation: tapWaterRun 0.9s linear infinite;
}

.tap-mist {
    position: absolute;
    right: 40px;
    top: 158px;
    width: 68px;
    height: 80px;
    background: radial-gradient(circle at 50% 30%, rgba(180, 243, 255, 0.64), rgba(180, 243, 255, 0) 72%);
    animation: mistPulse 1.9s ease-in-out infinite;
}

.tap-splash {
    position: absolute;
    right: 6px;
    bottom: 4px;
    width: 118px;
    height: 84px;
    pointer-events: none;
}

.tap-splash span {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.92), rgba(103, 205, 241, 0.86));
    box-shadow: 0 0 10px rgba(139, 224, 255, 0.75);
    animation: splashJump 1.2s ease-in-out infinite;
}

.tap-splash span:nth-child(1) { left: 6px; animation-delay: 0.05s; }
.tap-splash span:nth-child(2) { left: 18px; animation-delay: 0.24s; }
.tap-splash span:nth-child(3) { left: 28px; animation-delay: 0.4s; }
.tap-splash span:nth-child(4) { left: 43px; animation-delay: 0.12s; }
.tap-splash span:nth-child(5) { left: 56px; animation-delay: 0.3s; }
.tap-splash span:nth-child(6) { left: 70px; animation-delay: 0.52s; }
.tap-splash span:nth-child(7) { left: 83px; animation-delay: 0.18s; }
.tap-splash span:nth-child(8) { left: 96px; animation-delay: 0.46s; }

.hero-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.22);
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
}

.water-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.water-bubble {
    position: absolute;
    bottom: -40px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(186, 229, 248, 0.35));
    box-shadow: 0 0 10px rgba(167, 228, 255, 0.45);
    animation: bubbleUp linear infinite;
}

.hero-content {
    position: relative;
    z-index: 4;
    animation: fadeInUp 0.8s ease;
    max-width: 800px;
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(5, 34, 51, 0.24), rgba(5, 34, 51, 0.08));
    backdrop-filter: blur(0.7px);
    box-shadow: 0 10px 22px rgba(4, 28, 42, 0.16);
}

.hero-has-photo-slides .hero-content {
    background: linear-gradient(180deg, rgba(4, 30, 46, 0.26), rgba(4, 30, 46, 0.1));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.hero .subtitle-hindi {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 1rem;
    min-width: 200px;
}

/* ================================
   KISAN SCENE SECTION
   ================================ */

.kisan-scene-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(114, 199, 236, 0.25), transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(242, 196, 123, 0.18), transparent 30%),
        linear-gradient(180deg, #f2fbff 0%, #ecf9ff 35%, #eef7ef 100%);
    padding: 50px 20px 20px;
}

.kisan-scene-head {
    text-align: center;
    margin-bottom: 18px;
}

.kisan-scene-head .section-title {
    margin-bottom: 22px;
}

.kisan-scene-head p {
    max-width: 720px;
    margin: 0 auto;
    color: #356276;
    font-size: 1rem;
}

.machine-details-section {
    background:
        linear-gradient(180deg, #f7fdff 0%, #eef8ff 60%, #ffffff 100%);
}

.machine-details-intro {
    max-width: 760px;
    margin: -10px auto 24px;
    text-align: center;
    color: #2c6278;
}

.machine-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.machine-spec-card {
    background: linear-gradient(145deg, #ffffff, #f4fbff);
    border: 1px solid rgba(38, 117, 154, 0.2);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(13, 94, 134, 0.11);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.machine-spec-card::before {
    content: '';
    position: absolute;
    right: -45px;
    top: -45px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133, 217, 255, 0.35), rgba(133, 217, 255, 0));
}

.machine-spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(13, 94, 134, 0.19);
}

.machine-spec-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #0F6A97, #21A4D8);
}

.machine-spec-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0a4a66;
    margin-bottom: 6px;
}

.machine-spec-card h3 {
    font-size: 1.1rem;
    color: #0c3f58;
    margin-bottom: 8px;
}

.machine-spec-card p {
    color: #456273;
    font-size: 0.93rem;
}

.kisan-scene {
    position: relative;
    min-height: 290px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(38, 117, 154, 0.18);
    box-shadow: 0 16px 30px rgba(13, 94, 134, 0.14);
    background: linear-gradient(180deg, rgba(218, 244, 255, 0.96) 0%, rgba(202, 238, 253, 0.98) 48%, rgba(189, 152, 107, 0.9) 49%, rgba(129, 94, 57, 0.95) 100%);
    --wave-shift: 0px;
}

.kisan-sky-glow {
    position: absolute;
    top: 16px;
    right: 30px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 234, 173, 0.95) 0%, rgba(255, 209, 110, 0.65) 45%, rgba(255, 209, 110, 0) 75%);
    filter: blur(0.2px);
    animation: sunPulse 4s ease-in-out infinite;
}

.borewell-unit {
    position: absolute;
    left: 38px;
    top: 68px;
    width: 170px;
    height: 170px;
    z-index: 3;
}

.rig-frame {
    position: absolute;
    left: 20px;
    top: 12px;
    width: 82px;
    height: 82px;
    border: 6px solid #1f4f63;
    border-radius: 10px;
    transform: skewX(-8deg);
    background: linear-gradient(180deg, #2f6b82, #1f4f63);
    box-shadow: 0 8px 12px rgba(8, 34, 47, 0.25);
    animation: pumpPulse 2.4s ease-in-out infinite;
}

.rig-head {
    position: absolute;
    left: 78px;
    top: 28px;
    width: 36px;
    height: 22px;
    background: linear-gradient(180deg, #f8d878, #efb73f);
    border-radius: 5px;
    box-shadow: inset 0 -3px 0 rgba(147, 102, 26, 0.35);
}

.rig-pipe {
    position: absolute;
    left: 104px;
    top: 36px;
    width: 20px;
    height: 130px;
    border-radius: 12px;
    background: linear-gradient(180deg, #2584af, #0e5c82);
    box-shadow: 0 8px 15px rgba(7, 50, 73, 0.25);
}

.irrigation-water-track {
    position: absolute;
    left: 117px;
    top: 132px;
    width: 520px;
    height: 22px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(56, 175, 225, 0.9), rgba(146, 225, 255, 0.9), rgba(56, 175, 225, 0.85));
    box-shadow: 0 0 0 2px rgba(197, 240, 255, 0.38), 0 8px 18px rgba(31, 132, 169, 0.22);
    overflow: hidden;
}

.irrigation-water-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.46),
        rgba(255, 255, 255, 0.46) 10px,
        rgba(99, 197, 236, 0.08) 10px,
        rgba(99, 197, 236, 0.08) 20px
    );
    animation: irrigationFlow 1.1s linear infinite;
}

.water-drop {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #66cbf0);
    box-shadow: 0 0 8px rgba(125, 219, 255, 0.6);
    animation: dropFall 1.5s ease-in forwards;
}

.field-soil {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background:
        repeating-linear-gradient(
            -12deg,
            rgba(98, 71, 40, 0.66),
            rgba(98, 71, 40, 0.66) 12px,
            rgba(123, 88, 53, 0.7) 12px,
            rgba(123, 88, 53, 0.7) 24px
        );
}

.field-crops {
    position: absolute;
    left: 240px;
    right: 24px;
    bottom: 34px;
    display: grid;
    gap: 9px;
    z-index: 2;
}

.crop-line {
    position: relative;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(87, 138, 61, 0.35), rgba(125, 188, 89, 0.8));
    transform: scaleX(0.35);
    transform-origin: left center;
    opacity: 0.6;
}

.crop-line::before {
    content: '';
    position: absolute;
    inset: 2px 10px;
    border-radius: 999px;
    background: repeating-linear-gradient(
        90deg,
        rgba(210, 255, 190, 0.88),
        rgba(210, 255, 190, 0.88) 6px,
        rgba(107, 174, 72, 0.9) 6px,
        rgba(107, 174, 72, 0.9) 12px
    );
}

.crop-line.is-watered {
    animation: cropGrow 1.2s ease forwards;
}

.water-wave-bands {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 106px;
    height: 34px;
    pointer-events: none;
    z-index: 1;
}

.water-wave-bands span {
    position: absolute;
    left: -8%;
    width: 116%;
    border-radius: 50%;
    background: rgba(117, 207, 241, 0.4);
    transform: translateX(var(--wave-shift));
}

.water-wave-bands span:nth-child(1) {
    bottom: -6px;
    height: 20px;
    animation: fieldWave 3.8s linear infinite;
}

.water-wave-bands span:nth-child(2) {
    bottom: 5px;
    height: 14px;
    opacity: 0.75;
    animation: fieldWave 2.9s linear infinite reverse;
}

.water-wave-bands span:nth-child(3) {
    bottom: 13px;
    height: 10px;
    opacity: 0.55;
    animation: fieldWave 2.2s linear infinite;
}

/* ================================
   LIVE LOCATION SECTION
   ================================ */

.live-location {
    background: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid var(--secondary-color);
    animation: slideInLeft 0.6s ease;
}

.live-location h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.location-text {
    flex: 1;
    min-width: 250px;
}

.location-text p {
    margin: 5px 0;
    color: var(--text-color);
}

.location-badge-group {
    display: flex;
    gap: 10px;
}

.location-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.location-tabs {
    display: flex;
    gap: 10px;
    margin: 12px 0 20px;
    border-bottom: 2px solid rgba(10, 61, 98, 0.12);
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.location-tab-btn {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(10, 61, 98, 0.18);
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.location-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(10, 61, 98, 0.14);
}

.location-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--water-deep));
    color: var(--white-color);
    border-color: transparent;
}

.location-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(6px);
}

.location-tab-content.active {
    display: block;
    animation: fadeInUp 0.35s ease forwards;
}

.manual-location-form {
    background: linear-gradient(180deg, rgba(230, 247, 255, 0.9), rgba(255,255,255,0.96));
    border: 1px solid rgba(79, 160, 201, 0.28);
    border-radius: 12px;
    padding: 16px;
}

.manual-location-form input,
.manual-location-form select {
    box-shadow: 0 3px 10px rgba(13, 94, 134, 0.08);
}

.manual-location-form input:focus,
.manual-location-form select:focus {
    border-color: #53AED7 !important;
    box-shadow: 0 0 0 3px rgba(83, 174, 215, 0.22), 0 8px 18px rgba(10, 61, 98, 0.1);
    transform: translateY(-1px);
}

.location-details-container {
    display: grid;
    gap: 12px;
}

.machine-card-animated {
    background: linear-gradient(145deg, #FFFFFF, #F3FBFF);
    border: 1px solid rgba(32, 114, 151, 0.22);
    border-left: 5px solid var(--water-deep);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(13, 94, 134, 0.12);
    animation: cardLiftIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.machine-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.machine-operator {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
}

.machine-distance-badge {
    background: linear-gradient(135deg, #2A9D8F, #34B4A7);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
}

.machine-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2E4B5A;
    background: rgba(114, 199, 236, 0.12);
    border-radius: 8px;
    padding: 8px 10px;
}

.detail-icon {
    font-size: 1.05rem;
}

.machine-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.machine-actions .btn {
    position: relative;
    overflow: hidden;
}

.location-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: white;
    border-radius: 50%;
    vertical-align: middle;
    animation: spin 0.9s linear infinite;
    margin-right: 6px;
}

.location-error {
    animation: shake 0.4s ease;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
    background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.service-card {
    background: linear-gradient(160deg, #ffffff, #f3fbff);
    border: 1px solid rgba(13, 94, 134, 0.16);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideUp 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(11, 78, 110, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -46px;
    top: -46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(116, 210, 244, 0.35), rgba(116, 210, 244, 0));
    transition: transform 0.35s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #19a0d0, #f39c12, #19a0d0);
    transform: scaleX(0.25);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 14px 30px rgba(243, 156, 18, 0.22);
}

.service-card:hover::before {
    transform: scale(1.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   PRICING CALCULATOR
   ================================ */

.section#pricing {
    background: linear-gradient(180deg, #f9fcff 0%, #f2f8fd 100%);
}

.pricing-calculator {
    background: linear-gradient(150deg, #ffffff, #f2f9ff);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 12px 26px rgba(11, 78, 110, 0.12);
    border: 1px solid rgba(13, 94, 134, 0.16);
    animation: slideUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.pricing-calculator::after {
    content: '';
    position: absolute;
    left: -25%;
    right: -25%;
    top: -42px;
    height: 95px;
    background: radial-gradient(circle, rgba(114, 199, 236, 0.28), rgba(114, 199, 236, 0));
    pointer-events: none;
}

.pricing-calculator > * {
    position: relative;
    z-index: 1;
}

.pricing-calculator h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-group .error {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group input.error-input {
    border-color: var(--error-color);
}

.form-group input.error-input + .error {
    display: block;
}

.price-result {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    display: none;
}

.price-result.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.price-result h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-result .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* ================================
   WORK HISTORY SECTION
   ================================ */

.work-history {
    background: linear-gradient(180deg, #f7fcff 0%, #eef5fb 100%);
}

#work.section {
    background: linear-gradient(180deg, #f7fcff 0%, #eef5fb 100%) !important;
}

.history-item {
    background: linear-gradient(150deg, #ffffff, #f3f9ff);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
    border: 1px solid rgba(13, 94, 134, 0.15);
    margin-bottom: 15px;
    animation: slideInLeft 0.6s ease;
    position: relative;
    overflow: hidden;
}

.history-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(116, 210, 244, 0.07), rgba(116, 210, 244, 0));
    pointer-events: none;
}

.history-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.history-item .meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.history-item .meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.history-item .feedback {
    color: var(--text-color);
    font-style: italic;
    margin-top: 10px;
}

.history-item .rating {
    margin-top: 10px;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ================================
   REVIEWS SECTION
   ================================ */

.reviews {
    background: linear-gradient(180deg, #f8fcff 0%, #f1f8fd 100%);
}

.review-card {
    background: linear-gradient(160deg, #ffffff, #f6fbff);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 8px 20px rgba(8, 60, 87, 0.09);
    animation: fadeIn 0.6s ease;
    border: 1px solid rgba(13, 94, 134, 0.14);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    right: -12px;
    top: -6px;
    width: 58px;
    height: 58px;
    border-radius: 0 0 0 16px;
    background: linear-gradient(135deg, rgba(242, 168, 20, 0.38), rgba(242, 168, 20, 0));
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-name {
    color: var(--primary-color);
    font-weight: 600;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(11, 78, 110, 0.12);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease;
    aspect-ratio: 1;
    border: 1px solid rgba(13, 94, 134, 0.14);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 61, 98, 0.8);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    color: var(--white-color);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item.gallery-embed {
    aspect-ratio: auto;
    min-height: 420px;
    background: #fff;
}

.gallery-item.gallery-embed:hover {
    transform: translateY(-4px);
}

.gallery-item.gallery-embed .gallery-overlay {
    display: none;
}

.instagram-embed-frame {
    width: 100%;
    height: 420px;
    border: none;
    background: #fff;
}

.gallery-link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f3f9ff, #e9f6ff);
}

.gallery-link-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1f4c63;
    text-align: center;
    padding: 20px;
}

.gallery-link-inner i {
    font-size: 2rem;
    color: #d62976;
}

.gallery-link-inner small {
    color: #46728a;
    font-size: 0.82rem;
}

/* ================================
   POSTS & VIDEOS
   ================================ */

.posts-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(114, 199, 236, 0.2), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #eff9ff 100%);
}

.posts-section::before {
    background: radial-gradient(circle, rgba(114, 199, 236, 0.25), rgba(114, 199, 236, 0));
}

.posts-section::after {
    opacity: 0.85;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.post-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(13, 94, 134, 0.16);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(10, 61, 98, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(16, 140, 195, 0.2), rgba(16, 140, 195, 0.95), rgba(16, 140, 195, 0.2));
    transform: scaleX(0.2);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(10, 61, 98, 0.16);
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.post-instagram-frame {
    height: 300px;
    border: none;
    background: #fff;
}

.post-content {
    padding: 14px;
}

.post-content h3 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.post-content p {
    color: #415563;
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 0.82rem;
    color: #477087;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    align-items: start;
}

.videos-section {
    background: linear-gradient(180deg, #eaf7ff 0%, #deeffa 100%) !important;
}

.video-card {
    background: #fff;
    border: 1px solid rgba(13, 94, 134, 0.16);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 94, 134, 0.1);
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    animation: cardLiftIn 0.48s ease;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0f6a97, #2fb5e4, #6cd9ff);
    transform-origin: left center;
    transform: scaleX(0.2);
    transition: transform 0.35s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(13, 94, 134, 0.18);
}

.video-card:hover::before {
    transform: scaleX(1);
}

.video-card::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    top: -58px;
    right: -58px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89, 189, 226, 0.24), rgba(89, 189, 226, 0));
    pointer-events: none;
}

.video-card.is-instagram-reel {
    border-color: rgba(214, 41, 118, 0.35);
}

.video-card.is-instagram-reel::before {
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
    animation: reelNeonFlow 3.4s linear infinite;
}

.video-media-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-media-wrap.ratio-landscape {
    aspect-ratio: 16 / 9;
}

.video-media-wrap.ratio-portrait {
    aspect-ratio: 9 / 16;
    max-height: 620px;
    margin: 0 auto;
}

.video-media-wrap.ratio-auto {
    aspect-ratio: 16 / 9;
}

.video-media-wrap.ratio-auto.is-portrait {
    aspect-ratio: 9 / 16;
    max-height: 620px;
    margin: 0 auto;
}

.video-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.28s ease;
}

.video-card:hover .video-frame {
    transform: scale(1.015);
    filter: saturate(1.08);
}

.auto-play-video {
    object-fit: contain;
    object-position: center;
    background: #000;
}

.instagram-video-frame {
    background: #fff;
    opacity: 0;
    transform: translateY(8px);
}

.instagram-frame-ready {
    opacity: 1;
    transform: translateY(0);
}

.instagram-video-wrap {
    position: relative;
    background: #fff;
}

.instagram-video-tip {
    font-size: 0.78rem;
    color: #4b6473;
    padding: 8px 12px 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(239, 248, 255, 0.92));
    border-top: 1px dashed rgba(13, 94, 134, 0.18);
    animation: tipBreath 2.8s ease-in-out infinite;
}

.video-info {
    padding: 14px;
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.video-info p {
    color: #486170;
    font-size: 0.92rem;
}

.video-link {
    display: inline-block;
    margin: 12px;
    color: var(--water-deep);
    font-weight: 600;
}

.empty-note {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed rgba(13, 94, 134, 0.3);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    color: #497188;
}

.reveal-on-scroll,
.service-card,
.review-card {
    opacity: 0;
    transform: translateY(20px);
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.32);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

/* ================================
   BOOKING FORM SECTION
   ================================ */

.booking-form {
    background: linear-gradient(180deg, #f6fbff 0%, #ecf7ff 100%);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(160deg, #ffffff, #f3faff);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(11, 78, 110, 0.14);
    border: 1px solid rgba(13, 94, 134, 0.16);
    position: relative;
    overflow: hidden;
}

.booking-container::before {
    content: '';
    position: absolute;
    width: 430px;
    height: 430px;
    top: -260px;
    right: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 179, 227, 0.28), rgba(72, 179, 227, 0));
    pointer-events: none;
    animation: bookingAura 8s linear infinite;
}

.booking-container > * {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.booking-container .btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1rem;
}

.booking-container .form-group {
    position: relative;
}

.booking-container #booking-date,
.booking-container .booking-date-alt-input {
    background: linear-gradient(180deg, #ffffff, #f3fbff);
    border-color: rgba(13, 94, 134, 0.24);
    border-radius: 12px;
    padding: 13px 14px;
    font-weight: 600;
    color: #124860;
    transition: all 0.28s ease;
}

.booking-container #booking-date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: saturate(1.12) brightness(0.92);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.booking-container .form-group.date-picker-active label[for="booking-date"] {
    animation: calendarLabelPulse 0.9s ease;
}

.booking-container .form-group.date-picker-active #booking-date,
.booking-container .form-group.date-picker-active .booking-date-alt-input {
    border-color: #2fa9dd;
    box-shadow: 0 0 0 4px rgba(47, 169, 221, 0.16), 0 12px 20px rgba(10, 61, 98, 0.11);
    transform: translateY(-2px);
    animation: dateFieldGlow 1.4s ease-in-out infinite;
}

.booking-container .form-group.date-picker-active #booking-date::-webkit-calendar-picker-indicator {
    filter: saturate(1.35) brightness(1.02);
    animation: dateIconBounce 0.65s ease;
}

.booking-container .form-group.date-picked #booking-date,
.booking-container .form-group.date-picked .booking-date-alt-input {
    border-color: #1ea76f;
    box-shadow: 0 0 0 4px rgba(30, 167, 111, 0.18), 0 10px 18px rgba(30, 167, 111, 0.14);
}

.booking-container .form-group.date-picker-modern {
    --date-icon-space: 40px;
}

.booking-container .form-group.date-picker-modern::before {
    content: '\f133';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 43px;
    color: #0f6a97;
    font-size: 1rem;
    pointer-events: none;
    transition: transform 0.24s ease, color 0.24s ease;
}

.booking-container .form-group.date-picker-modern.date-picker-active::before {
    color: #1292cc;
    transform: scale(1.12) rotate(-6deg);
}

.booking-container .form-group.date-picker-modern .booking-date-alt-input {
    padding-right: calc(var(--date-icon-space) + 8px);
    letter-spacing: 0.2px;
}

.booking-container .form-group.date-picker-modern .booking-date-alt-input::placeholder {
    color: #6f8898;
    font-weight: 500;
}

.booking-container #booking-date.flatpickr-input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
}

.flatpickr-calendar {
    border: none !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(9, 60, 86, 0.24) !important;
    animation: calendarDropIn 0.22s ease;
}

.flatpickr-months {
    background: linear-gradient(135deg, #0f6a97, #1e96c8);
    padding: 6px 0;
}

.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.flatpickr-current-month .numInputWrapper span,
.flatpickr-current-month input.cur-year,
.flatpickr-prev-month,
.flatpickr-next-month {
    color: #fff !important;
    fill: #fff !important;
}

span.flatpickr-weekday {
    color: #2a6178;
    font-weight: 700;
}

.flatpickr-day {
    border-radius: 8px;
}

.flatpickr-day:hover {
    background: rgba(31, 151, 203, 0.18);
    border-color: rgba(31, 151, 203, 0.18);
}

.flatpickr-day.today {
    border-color: #1f97cb;
    color: #1f97cb;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #108cc3;
    border-color: #108cc3;
    color: #fff;
}

.booking-container .form-group.date-picked::after {
    content: '';
    position: absolute;
    left: -20%;
    right: -20%;
    top: 31px;
    height: 52px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(151, 246, 218, 0.6), rgba(255,255,255,0));
    pointer-events: none;
    animation: dateSparkSweep 1.1s ease;
}

.booking-location-status {
    margin-top: 14px;
    font-size: 0.88rem;
    color: #33657a;
    background: #eaf7ff;
    border: 1px solid rgba(51, 137, 176, 0.26);
    border-radius: 8px;
    padding: 10px 12px;
}

.booking-location-status.is-live {
    border-color: rgba(34, 166, 124, 0.38);
    color: #1e6c52;
    background: #e8fff6;
}

/* ================================
   OWNER SECTION
   ================================ */

.owner-section {
    background:
        radial-gradient(circle at 20% 10%, rgba(114, 199, 236, 0.2), transparent 45%),
        linear-gradient(180deg, #f7fcff 0%, #ecf7ff 100%);
}

.owner-section::after {
    opacity: 0.9;
}

.owner-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 26px;
    align-items: center;
    background: linear-gradient(140deg, #ffffff, #f3fbff);
    border: 1px solid rgba(38, 117, 154, 0.2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 14px 28px rgba(13, 94, 134, 0.14);
    position: relative;
    overflow: hidden;
}

.owner-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    left: -110px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 199, 236, 0.24), rgba(114, 199, 236, 0));
    pointer-events: none;
}

.owner-avatar-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto;
}

.owner-avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #0F6A97, #22A2D7, #5FD3FF, #0F6A97);
    animation: ownerRing 4s linear infinite;
}

.owner-avatar {
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #114d6e, #0f7bad);
    color: #fff;
    font-size: 3.4rem;
}

.owner-content h3 {
    color: #0a3f5a;
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.owner-content p {
    color: #365a6b;
    margin-bottom: 12px;
}

.owner-points {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.owner-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #295264;
    font-size: 0.95rem;
}

.owner-points i {
    color: #1fa46f;
}

.owner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-success {
    background: var(--success-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.3s ease;
}

.booking-success.show {
    display: block;
}

.booking-error {
    background: var(--error-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    animation: shake 0.3s ease;
}

.booking-error.show {
    display: block;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
    background: var(--primary-color);
    color: var(--white-color);
}

.contact.section::before {
    width: 420px;
    height: 420px;
    top: -250px;
    right: -140px;
    background: radial-gradient(circle, rgba(102, 200, 240, 0.24), rgba(102, 200, 240, 0));
}

.contact.section::after {
    opacity: 0.4;
    background:
        repeating-linear-gradient(
            -12deg,
            rgba(180, 230, 250, 0.1),
            rgba(180, 230, 250, 0.1) 8px,
            rgba(180, 230, 250, 0) 8px,
            rgba(180, 230, 250, 0) 18px
        );
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3,
.contact-map h3,
.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info a {
    color: var(--secondary-color);
    display: block;
    margin: 10px 0;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    flex: 1;
    min-width: 150px;
    padding: 12px;
    text-align: center;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form textarea,
.contact-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white-color);
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form textarea:focus,
.contact-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: var(--secondary-color);
}

/* ================================
   FOOTER
   ================================ */

footer {
    background: #030f1b;
    color: var(--white-color);
    padding: 40px 20px 20px;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    display: block;
    margin: 8px 0;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ================================
   FLOATING BUTTONS
   ================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
}

.floating-call {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(10, 61, 98, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
    animation: float 3s ease-in-out infinite;
}

.floating-call:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 25px rgba(10, 61, 98, 0.6);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes menuTogglePulse {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes headerGlowShift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-10px, 8px, 0) scale(1.08);
    }
}

@keyframes sectionTitleGlow {
    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.12);
    }
}

@keyframes mobileMenuDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileMenuItemIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-650px) scale(1.4);
    }
}

@keyframes heroSlideZoom {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heroWaveShift {
    0%,
    100% {
        transform: translateX(-1%) translateY(0);
    }
    50% {
        transform: translateX(1%) translateY(-5px);
    }
}

@keyframes sectionOrbDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-18px, 14px, 0) scale(1.08);
    }
}

@keyframes sectionLineSweep {
    0% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

@keyframes tapMetalShine {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.06);
    }
}

@keyframes tapWaterRun {
    from {
        transform: translateY(-18px);
    }
    to {
        transform: translateY(18px);
    }
}

@keyframes mistPulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.08);
    }
}

@keyframes splashJump {
    0% {
        transform: translateY(0) scale(0.9);
        opacity: 0;
    }
    24% {
        opacity: 1;
    }
    72% {
        transform: translateY(-26px) scale(1.15);
        opacity: 0.92;
    }
    100% {
        transform: translateY(-42px) scale(0.6);
        opacity: 0;
    }
}

@keyframes cardLiftIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes irrigationFlow {
    from {
        transform: translateX(-18px);
    }
    to {
        transform: translateX(18px);
    }
}

@keyframes dropFall {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.95;
    }
    100% {
        transform: translateY(65px) scale(1.4);
        opacity: 0;
    }
}

@keyframes cropGrow {
    0% {
        transform: scaleX(0.35);
        opacity: 0.6;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fieldWave {
    0% {
        transform: translateX(calc(var(--wave-shift) - 10px));
    }
    50% {
        transform: translateX(calc(var(--wave-shift) + 10px));
    }
    100% {
        transform: translateX(calc(var(--wave-shift) - 10px));
    }
}

@keyframes pumpPulse {
    0%, 100% {
        transform: skewX(-8deg) translateY(0);
    }
    50% {
        transform: skewX(-8deg) translateY(-3px);
    }
}

@keyframes sunPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes ownerRing {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dateFieldGlow {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(47, 169, 221, 0.14), 0 10px 20px rgba(10, 61, 98, 0.1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(47, 169, 221, 0.2), 0 14px 24px rgba(10, 61, 98, 0.14);
    }
}

@keyframes calendarLabelPulse {
    0% {
        transform: translateX(0);
        color: var(--primary-color);
    }
    35% {
        transform: translateX(2px);
        color: #0e7aa9;
    }
    70% {
        transform: translateX(-1px);
        color: #0e7aa9;
    }
    100% {
        transform: translateX(0);
        color: var(--primary-color);
    }
}

@keyframes dateIconBounce {
    0% {
        transform: scale(1) rotate(0deg);
    }
    40% {
        transform: scale(1.18) rotate(-8deg);
    }
    70% {
        transform: scale(1.08) rotate(6deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes dateSparkSweep {
    0% {
        transform: translateX(-90%);
        opacity: 0;
    }
    35% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(90%);
        opacity: 0;
    }
}

@keyframes calendarDropIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes reelNeonFlow {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes tipBreath {
    0%, 100% {
        opacity: 0.82;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bookingAura {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ================================
   MODAL
   ================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white-color);
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    animation: slideUp 0.3s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.modal-close {
    color: var(--text-color);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.modal-close:hover {
    color: var(--secondary-color);
}

/* ================================
   LOADER
   ================================ */

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .section::before {
        width: 260px;
        height: 260px;
        right: -110px;
        top: -150px;
    }

    .section::after {
        height: 84px;
        bottom: -54px;
    }

    .hero::after {
        height: 150px;
        bottom: -72px;
        opacity: 0.34;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        max-width: 92%;
        padding: 18px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        min-width: 100%;
    }

    .hero-water-tap {
        right: -28px;
        top: 58%;
        transform: translateY(-42%) scale(0.78);
        opacity: 0.82;
    }

    .hero-slide-dots {
        bottom: 14px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 20px;
        gap: 10px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 14px 24px rgba(0,0,0,0.22);
        z-index: 95;
        animation: mobileMenuDrop 0.26s ease;
    }

    .nav-menu.active > li {
        opacity: 0;
        transform: translateY(-8px);
        animation: mobileMenuItemIn 0.32s ease forwards;
    }

    .nav-menu.active > li:nth-child(1) { animation-delay: 0.03s; }
    .nav-menu.active > li:nth-child(2) { animation-delay: 0.06s; }
    .nav-menu.active > li:nth-child(3) { animation-delay: 0.09s; }
    .nav-menu.active > li:nth-child(4) { animation-delay: 0.12s; }
    .nav-menu.active > li:nth-child(5) { animation-delay: 0.15s; }
    .nav-menu.active > li:nth-child(6) { animation-delay: 0.18s; }
    .nav-menu.active > li:nth-child(7) { animation-delay: 0.21s; }
    .nav-menu.active > li:nth-child(8) { animation-delay: 0.24s; }
    .nav-menu.active > li:nth-child(9) { animation-delay: 0.27s; }
    .nav-menu.active > li:nth-child(10) { animation-delay: 0.3s; }

    .nav-menu > li:not(.nav-direct-actions) > a::after {
        bottom: 0;
    }

    .nav-direct-actions {
        margin-left: 0;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.2);
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .nav-direct-btn {
        justify-content: center;
        width: 100%;
    }

    .floating-whatsapp,
    .floating-call {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-call {
        bottom: 75px;
    }

    .service-card {
        padding: 20px;
    }

    .pricing-calculator {
        padding: 20px;
    }

    .booking-container {
        padding: 20px;
    }

    .booking-container .form-group.date-picker-modern::before {
        top: 39px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .manual-location-form > div {
        grid-template-columns: 1fr !important;
    }

    .kisan-scene {
        min-height: 310px;
    }

    .borewell-unit {
        left: 18px;
        top: 80px;
        transform: scale(0.92);
        transform-origin: left top;
    }

    .irrigation-water-track {
        width: 330px;
    }

    .field-crops {
        left: 155px;
        right: 12px;
        bottom: 28px;
    }

    .machine-actions {
        flex-direction: column;
    }

    .machine-actions .btn {
        width: 100%;
        text-align: center;
    }

    .owner-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

    .owner-points li {
        justify-content: center;
    }

    .owner-actions {
        justify-content: center;
    }

    .machine-spec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-media-wrap.ratio-portrait,
    .video-media-wrap.ratio-auto.is-portrait {
        max-height: 520px;
    }

    .instagram-embed-frame,
    .post-instagram-frame {
        height: 420px;
    }

    .hero-buttons,
    .location-buttons,
    .contact-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .location-buttons .btn,
    .contact-buttons .btn {
        width: 100%;
    }

    .modal-content {
        margin: 30% auto;
        max-width: 90%;
    }

    .contact-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section::before {
        width: 210px;
        height: 210px;
        right: -100px;
        top: -122px;
    }

    .section::after {
        height: 68px;
        bottom: -46px;
        opacity: 0.58;
    }

    .hero::after {
        height: 124px;
        bottom: -58px;
        opacity: 0.28;
    }

    .hero {
        padding: 60px 15px;
        min-height: 400px;
    }

    .hero-content {
        padding: 14px;
        border-radius: 12px;
        max-width: 97%;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
    }

    .hero-water-tap {
        right: -58px;
        top: 60%;
        transform: translateY(-41%) scale(0.58);
        opacity: 0.7;
    }

    .booking-container .form-group.date-picker-modern::before {
        top: 37px;
        right: 10px;
    }

    .hero-slide-dots {
        bottom: 10px;
        gap: 6px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 20px;
    }

    .section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 10px;
        font-size: 0.8rem;
    }

    .nav-direct-actions {
        grid-template-columns: 1fr;
    }

    .header-top {
        flex-direction: column;
        gap: 10px;
        font-size: 0.8rem;
    }

    .header-top a {
        margin: 5px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .floating-whatsapp,
    .floating-call {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }

    .floating-call {
        bottom: 65px;
    }

    .row,
    .row-2 {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 20px;
    }

    .kisan-scene-section {
        padding-top: 35px;
    }

    .kisan-scene {
        min-height: 280px;
    }

    .borewell-unit {
        transform: scale(0.76);
        left: 2px;
        top: 88px;
    }

    .irrigation-water-track {
        width: 255px;
    }

    .field-crops {
        left: 102px;
        right: 10px;
        gap: 6px;
    }

    .machine-spec-grid {
        grid-template-columns: 1fr;
    }

    .owner-avatar-wrap {
        width: 145px;
        height: 145px;
    }

    .owner-content h3 {
        font-size: 1.3rem;
    }

    .crop-line {
        height: 14px;
    }

    .video-media-wrap.ratio-portrait,
    .video-media-wrap.ratio-auto.is-portrait {
        max-height: 420px;
    }

    .instagram-embed-frame,
    .post-instagram-frame {
        height: 360px;
    }
}
