/* ============================================================
   Yash Universal Impex — Main Stylesheet
   Premium Agricultural Export Brand
   Colors: Deep Forest Green, Warm Gold, Ivory White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=DM+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --green-dark: #10281d;
    --green-mid: #1f5c43;
    --green-light: #52b788;
    --green-pale: #d8f3dc;
    --gold: #caa54b;
    --gold-light: #e7c978;
    --gold-pale: #fdf6e3;
    --ivory: #faf9f5;
    --white: #ffffff;
    --text-dark: #1c2b22;
    --text-mid: #4a5d52;
    --text-light: #8a9e93;
    --border: #e0ead5;
    --shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 58, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 58, 42, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--ivory);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--green-dark);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-green {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── Navbar ──────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: linear-gradient(
        180deg,
        rgba(12, 32, 24, 0.88) 0%,
        rgba(20, 48, 36, 0.76) 100%
    );
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

#navbar.scrolled {
    background: linear-gradient(
        180deg,
        rgba(15, 39, 29, 0.98) 0%,
        rgba(24, 60, 44, 0.96) 100%
    );
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 10px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nav-logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-logo-text .tagline {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(232, 201, 122, 0.92);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after {
    transform: scaleX(1);
}

.nav-links a.active {
    background: rgba(201, 168, 76, 0.16);
    color: var(--gold-light);
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.22);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--green-dark) !important;
    border-radius: 999px !important;
    padding: 0.72rem 1.35rem !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.28);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), #f1d68f) !important;
    color: #183222 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 168, 76, 0.36);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--white);
    border-radius: 999px;
    transition: var(--transition);
}

/* ── Hero Section ────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-farm.jpg');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 28, 18, 0.85) 0%,
        rgba(26, 58, 42, 0.7) 50%,
        rgba(45, 106, 79, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-item .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* Hero Image Cards */
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card:first-child {
    grid-column: 1 / -1;
    height: 240px;
}

.hero-card:not(:first-child) {
    height: 160px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card:hover img {
    transform: scale(1.06);
}

/* ── Section Layout ──────────────────────────────────────── */
section {
    padding: 6rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin-top: 1rem;
    line-height: 1.7;
}

/* ── Categories Bar ──────────────────────────────────────── */
#categories {
    padding: 0;
    background: var(--green-dark);
}

.categories-bar {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}

.categories-bar::-webkit-scrollbar {
    display: none;
}

.cat-item {
    flex: 0 0 auto;
    padding: 1.2rem 2rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-item:hover,
.cat-item.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

/* ── Products Grid ───────────────────────────────────────── */
#products {
    background: var(--ivory);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-image {
    height: 200px;
    overflow: hidden;
    background: var(--green-pale);
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-image .cat-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(26, 58, 42, 0.85);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--green-pale), #b7e4c7);
    color: var(--green-mid);
}

.product-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.product-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-origin {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-inquiry-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-mid);
    border: 1.5px solid var(--green-mid);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    white-space: nowrap;
}

.product-inquiry-btn:hover {
    background: var(--green-mid);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Video Section ───────────────────────────────────────── */
#video-section {
    background: var(--green-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#video-section .container {
    position: relative;
    z-index: 1;
}

.video-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.video-text p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── About Section ───────────────────────────────────────── */
#about {
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    padding: 1.25rem;
    background: var(--ivory);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.highlight-item .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight-item h4 {
    font-size: 0.92rem;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ── Owner Section ───────────────────────────────────────── */
#owner {
    background: var(--gold-pale);
    padding: 5rem 0;
}

.owner-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: center;
}

.owner-photo {
    width: 320px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.owner-info h2 {
    margin-bottom: 0.5rem;
}

.owner-info .title {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.owner-info p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ── Gallery Row ─────────────────────────────────────────── */
#gallery {
    background: var(--ivory);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '+';
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ── Why Choose Us ───────────────────────────────────────── */
#why-us {
    background: var(--green-dark);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(6px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.3);
}

.why-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.why-card h3 {
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Contact Section ─────────────────────────────────────── */
#contact {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail .icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail .info h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.contact-detail .info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.contact-detail .info a {
    color: var(--green-mid);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--ivory);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-success {
    display: none;
    background: var(--green-pale);
    color: var(--green-dark);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    border-left: 4px solid var(--green-mid);
}

/* ── WhatsApp Floating Button ────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-wa {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
    background: linear-gradient(180deg, #11261c 0%, #0b1a13 100%);
    color: rgba(255, 255, 255, 0.68);
    padding: 4.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(202, 165, 75, 0.03) 0%,
        transparent 35%,
        transparent 65%,
        rgba(202, 165, 75, 0.03) 100%
    );
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 46px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 0.5rem;
    background: var(--gold);
    border-radius: 999px;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.84rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
    color: var(--gold-light);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* ── Animations ──────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .about-layout,
    .video-layout,
    .owner-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .owner-photo {
        width: 260px;
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-images {
        height: 360px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 1rem;
        right: 1rem;
        background: rgba(15, 39, 29, 0.98);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-logo img {
        height: 44px;
    }

    .nav-logo-text .brand {
        font-size: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        height: 280px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .nav-container,
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 50px;
        height: 50px;
    }
}