:root {

    --primary: #5C3D2E;
    --secondary: #8B5E34;
    --accent: #D4A373;
    --bg: #FFF8F0;
    --white: #ffffff;
    --dark: #222;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 100px 0;
}

/* ==========================
   HEADER
========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(22, 18, 14, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* ==========================
   LOGO
========================== */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-content h2 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.logo-content span {
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==========================
   NAVIGATION
========================== */

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ==========================
   HEADER BUTTONS
========================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-btn {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 11px 18px;
    border-radius: 50px;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.call-btn:hover {
    background: rgba(255,255,255,0.1);
}

.inquiry-btn {
    background: var(--accent);
    color: #222;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,163,115,0.35);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {

    .nav-menu {
        display: none;
    }

    .logo-content span {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .call-btn {
        display: none;
    }

    .inquiry-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {

    .logo img {
        width: 50px;
        height: 50px;
    }

    .logo-content h2 {
        font-size: 1rem;
    }

    .inquiry-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* ====================================
   HERO
==================================== */

.hero {

    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #2b1d15 0%,
            #4a2f1e 100%
        );

    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-wrapper {

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-content {

    color: white;
}

.hero-badge {

    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.1);

    margin-bottom: 25px;
}

.hero-content h1 {

    font-size: 4.5rem;
    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-content h1 span {

    color: var(--accent);
    display: block;
}

.hero-content p {

    font-size: 1.1rem;
    line-height: 1.8;

    color: rgba(255,255,255,.85);

    margin-bottom: 35px;
}

.hero-features {

    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    margin-bottom: 40px;
}

.feature {

    background: rgba(255,255,255,.08);

    padding: 15px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.08);
}

.hero-buttons {

    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-primary {

    background: var(--accent);
    color: #222;
}

.btn-secondary {

    border: 2px solid white;
    color: white;
}

/* ===================================
   HERO GALLERY PREMIUM
=================================== */

.hero-gallery {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: 320px 220px 220px;

    gap: 20px;
}

.hero-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

    transition: all .4s ease;
}

.hero-card:hover {

    transform: translateY(-6px);
}

.hero-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.hero-card:hover img {

    transform: scale(1.08);
}

/* Layout */

.hero-main {
    grid-column: span 2;
}

.hero-packaging {
    grid-column: 1;
}

.hero-manufacturing {
    grid-column: 2;
}

.hero-export {
    grid-column: span 2;
}

/* Overlay Gradient */

.hero-card::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent 45%
        );

    pointer-events: none;
}

/* ===================================
   PREMIUM FLOATING TAGS
=================================== */

.image-tag {

    position: absolute;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    background: rgba(255,255,255,.95);

    color: #222;

    border-radius: 50px;

    font-size: .82rem;
    font-weight: 600;

    backdrop-filter: blur(15px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);

    z-index: 5;

    transition: .3s ease;
}

.hero-card:hover .image-tag {

    transform: translateY(-3px);
}

/* Positions */

.tag-top {

    top: 18px;
    left: 18px;
}

.tag-bottom {

    bottom: 18px;
    left: 18px;
}

.tag-right {

    top: 18px;
    right: 18px;
}

.tag-left {

    bottom: 18px;
    left: 18px;
}

.tag-export {

    bottom: 18px;
    right: 18px;
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 991px) {

    .hero-gallery {

        grid-template-columns: 1fr;

        grid-template-rows: auto;
    }

    .hero-main,
    .hero-packaging,
    .hero-manufacturing,
    .hero-export {

        grid-column: auto;
    }

    .hero-card {

        height: 280px;
    }

    .image-tag {

        font-size: .75rem;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {

    .hero-card {

        height: 220px;
        border-radius: 18px;
    }

    .image-tag {

        font-size: .7rem;
        padding: 8px 12px;
    }
}

/* ====================================
   IMAGE COLLAGE
==================================== */

.hero-gallery {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    grid-template-rows: 280px 180px 220px;

    gap: 20px;
}

.hero-card {

    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.hero-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.hero-card:hover img {

    transform: scale(1.08);
}

.hero-main {

    grid-column: span 2;
}

.hero-packaging {

    grid-column: 1;
}

.hero-manufacturing {

    grid-column: 2;
}

.hero-export {

    grid-column: span 2;
}

/* ====================================
   STATS BAR
==================================== */

.hero-bottom-bar {

    position: absolute;
    bottom: 0;

    width: 100%;

    background: rgba(0,0,0,.35);

    backdrop-filter: blur(12px);
}

.stats-row {

    display: grid;
    grid-template-columns: repeat(4,1fr);

    padding: 25px 0;
}

.stat {

    text-align: center;
    color: white;
}

.stat h3 {

    color: var(--accent);
    font-size: 1.8rem;
}

.stat span {

    font-size: .9rem;
    opacity: .85;
}

/* SECTION TITLES */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

/* GRID */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
    align-items: center;
}

/* ===================================
   ABOUT SECTION PREMIUM
=================================== */

.about-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* IMAGE SIDE */

.about-image {

    position: relative;
}

.about-image img {

    width: 100%;

    border-radius: 28px;

    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

/* BADGES */

/* BADGES (FLOATING TAGS) */

/* ===================================
   ABOUT SECTION (UPGRADED IMAGE FOCUS)
=================================== */

.about-wrapper {

    display: grid;

    grid-template-columns: 1.2fr 1fr; /* 👈 IMAGE BIGGER NOW */

    gap: 90px;

    align-items: center;
}

/* IMAGE SIDE - BIGGER + PREMIUM LOOK */

.about-image {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}

/* MAIN IMAGE */

.about-image img {

    width: 100%;

    max-width: 520px; /* 👈 INCREASED SIZE */

    height: 620px; /* 👈 FIXED HEIGHT FOR HERO FEEL */

    object-fit: cover;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(0,0,0,.18);

    transform: scale(1.05); /* 👈 SLIGHT PREMIUM POP */
}

/* BADGES (FLOATING TAGS) */

.about-badge {

    position: absolute;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    padding: 12px 18px;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 600;

    box-shadow: 0 12px 30px rgba(0,0,0,.15);

    z-index: 2;

    transition: .3s ease;
}

.about-badge:hover {
    transform: translateY(-4px);
}

/* POSITION ADJUSTED FOR BIG IMAGE */

.badge-1 {
    top: 25px;
    left: 25px;
    background: lightgreen;
    border: 1px solid rgba(12, 15, 12, 0.2);
}

.badge-2 {
    bottom: 120px;
    left: 25px;
    background: lightblue;
    border: 1px solid rgba(12, 15, 12, 0.2);
}

.badge-3 {
    bottom: 25px;
    right: 25px;
    background: lightcoral;
    border: 1px solid rgba(12, 15, 12, 0.2);
}

/* CONTENT SIDE IMPROVEMENT */

.about-content {

    padding-right: 20px;
}

.about-content h2 {

    font-size: 3.2rem;
}

.about-content h2 span {

    font-size: 1.6rem;
}

/* RESPONSIVE FIX */

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-image img{
        max-width:100%;
        height:420px; /* smaller but still strong */
        transform:none;
    }
}
/* CONTENT SIDE */

.section-tag {

    display: inline-block;

    background: rgba(212,163,115,.15);

    color: var(--accent);

    padding: 10px 18px;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 600;

    margin-bottom: 20px;
}

.about-content h2 {

    font-size: 3rem;

    line-height: 1.2;

    margin-bottom: 20px;

    color: var(--primary);
}

.about-content h2 span {

    display: block;

    color: var(--accent);

    font-size: 1.5rem;

    margin-top: 5px;
}

.about-content p {

    margin-bottom: 18px;

    color: #555;

    line-height: 1.8;
}

/* HIGHLIGHTS */

.about-highlights {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

    margin: 30px 0;
}

.highlight-box {

    background: #fff;

    padding: 20px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    transition: .3s ease;
}

.highlight-box:hover {

    transform: translateY(-5px);
}

.highlight-box h3 {

    font-size: 1.8rem;

    color: var(--accent);

    margin-bottom: 5px;
}

.highlight-box p {

    font-size: .9rem;

    color: #666;
}

/* ACTIONS */

.about-actions {

    display: flex;

    gap: 20px;

    margin-top: 30px;
}

.btn-primary {

    background: var(--accent);

    color: #222;

    padding: 14px 26px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline {

    border: 2px solid var(--primary);

    color: var(--primary);

    padding: 14px 26px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:2.2rem;
    }

    .about-actions{
        flex-direction:column;
    }
}


/* ===================================
   PRODUCTS (ICON PREMIUM VERSION)
=================================== */

.product-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

/* CARD */

.product-card {

    background: #fff;

    padding: 30px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    transition: .4s ease;

    position: relative;

    overflow: hidden;
}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* ICON */

.product-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    background: linear-gradient(135deg, #f8efe7, #fff);

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* TITLE */

.product-card h3 {

    font-size: 1.2rem;

    color: var(--primary);

    margin-bottom: 10px;
}

/* DESCRIPTION */

.product-card p {

    font-size: .95rem;

    color: #666;

    line-height: 1.6;

    margin-bottom: 15px;
}

/* TAG */

.product-tag {

    display: inline-block;

    padding: 6px 14px;

    border-radius: 50px;

    font-size: .75rem;

    font-weight: 600;

    background: rgba(212,163,115,.15);

    color: var(--accent);
}

/* HOVER EFFECT ACCENT LINE */

.product-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0%;

    height: 4px;

    background: var(--accent);

    transition: .4s ease;
}

.product-card:hover::before {

    width: 100%;
}

/* RESPONSIVE */

@media(max-width:991px){

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

@media(max-width:576px){

    .product-grid{
        grid-template-columns: 1fr;
    }
}

/* FEATURES */

/* ===================================
   FEATURES (WHY CHOOSE US)
=================================== */

.feature-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

/* CARD */

.feature-card {

    background: #fff;

    padding: 35px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    transition: .4s ease;

    position: relative;

    overflow: hidden;
}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* ICON */

.feature-icon {

    width: 75px;

    height: 75px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    background: linear-gradient(135deg, #f8efe7, #ffffff);

    border-radius: 20px;

    box-shadow: 0 12px 25px rgba(0,0,0,.08);

    transition: .3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* TITLE */

.feature-card h3 {

    font-size: 1.2rem;

    color: var(--primary);

    margin-bottom: 10px;
}

/* TEXT */

.feature-card p {

    font-size: .95rem;

    color: #666;

    line-height: 1.6;
}

/* TOP ACCENT LINE */

.feature-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0%;

    height: 4px;

    background: var(--accent);

    transition: .4s ease;
}

.feature-card:hover::before {

    width: 100%;
}

/* RESPONSIVE */

@media(max-width:991px){

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

@media(max-width:576px){

    .feature-grid{
        grid-template-columns: 1fr;
    }
}

/* MANUFACTURING */
/* ===================================
   MANUFACTURING SECTION PREMIUM
=================================== */

.manufacturing-wrapper {

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* CONTENT */

.manufacturing-content h2 {

    font-size: 3rem;

    color: var(--primary);

    line-height: 1.2;

    margin-bottom: 20px;
}

.manufacturing-content h2 span {

    display: block;

    color: var(--accent);

    font-size: 1.4rem;

    margin-top: 5px;
}

.manufacturing-content p {

    color: #555;

    line-height: 1.8;

    margin-bottom: 25px;
}

/* GRID */

.section-title h2 {

    font-size: 2.8rem;

    color: var(--primary);

    font-weight: 700;
}

/* Brand Highlight */

.section-title h2 span {

    display: inline-block;

    color: var(--accent);

    position: relative;

    font-weight: 800;
}

/* Underline glow effect */

.section-title h2 span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 6px;

    width: 100%;

    height: 3px;

    background: var(--accent);

    border-radius: 5px;

    opacity: 0.6;
}
.manufacturing-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

    margin: 30px 0;
}

.mfg-card {

    background: #fff;

    padding: 20px;

    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,.08);

    text-align: center;

    transition: .3s ease;
}

.mfg-card:hover {

    transform: translateY(-5px);
}

.mfg-icon {

    font-size: 2rem;

    margin-bottom: 10px;
}

/* BUTTONS */

.manufacturing-actions {

    display: flex;

    gap: 20px;

    margin-top: 20px;
}

.btn-primary {

    background: var(--accent);

    color: #222;

    padding: 14px 26px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

.btn-outline {

    border: 2px solid var(--primary);

    color: var(--primary);

    padding: 14px 26px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

/* IMAGE SIDE */

.manufacturing-image {

    position: relative;
}

.manufacturing-image img {

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

/* BADGES */

.mfg-badge {

    position: absolute;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    padding: 12px 18px;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.badge-1 {
    top: 20px;
    left: 20px;
}

.badge-2 {
    bottom: 120px;
    left: 20px;
}

.badge-3 {
    bottom: 20px;
    right: 20px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .manufacturing-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .manufacturing-image img{
        height:400px;
    }

    .manufacturing-actions{
        flex-direction:column;
    }
}

/* GALLERY */

.gallery-grid {
    columns: 3;
    gap: 20px;
}

.gallery-grid img {
    margin-bottom: 20px;
    border-radius: 15px;
}

/* CONTACT */

.contact-box {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

/* FOOTER */

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 30px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .grid-2,
    .product-grid,
    .feature-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:3rem;
    }
}

@media(max-width:768px){

    nav{
        display:none;
    }

    .grid-2,
    .product-grid,
    .feature-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        columns:1;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

/* ===================================
   CONTACT SECTION PREMIUM
=================================== */

.contact-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}

/* LEFT SIDE */

.contact-info h3 {

    font-size: 2rem;

    color: var(--primary);

    margin-bottom: 15px;
}

.contact-desc {

    color: #555;

    line-height: 1.8;

    margin-bottom: 25px;
}

/* CONTACT ITEMS */

.contact-items {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 30px;
}

.contact-item {

    background: #fff;

    padding: 14px 18px;

    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0,0,0,.06);

    font-size: .95rem;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s ease;
}

.contact-item:hover {

    transform: translateX(5px);
}

/* ACTION BUTTONS */

.contact-actions {

    display: flex;

    gap: 15px;
}

.btn-primary {

    background: var(--accent);

    color: #222;

    padding: 14px 24px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

.btn-outline {

    border: 2px solid var(--primary);

    color: var(--primary);

    padding: 14px 24px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

/* RIGHT FORM */

.contact-form {

    background: #fff;

    padding: 35px;

    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.contact-form h3 {

    margin-bottom: 20px;

    color: var(--primary);
}

/* INPUTS */

.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 14px 16px;

    margin-bottom: 15px;

    border-radius: 12px;

    border: 1px solid #eee;

    outline: none;

    font-family: inherit;

    transition: .3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--accent);

    box-shadow: 0 0 0 3px rgba(212,163,115,.15);
}

.contact-form textarea {

    height: 120px;

    resize: none;
}

/* BUTTON */

.contact-form button {

    width: 100%;

    padding: 14px;

    background: var(--primary);

    color: #fff;

    border: none;

    border-radius: 12px;

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.contact-form button:hover {

    background: var(--accent);

    color: #222;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-actions{
        flex-direction:column;
    }
}

/* ===================================
   WHATSAPP CONTACT BOX
=================================== */

.whatsapp-box {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    gap: 20px;
}

.whatsapp-box p {

    color: #555;

    line-height: 1.7;
}

/* BUTTON */

.whatsapp-btn {

    display: inline-block;

    background: #25D366;

    color: #fff;

    padding: 16px 22px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    font-size: 1rem;

    box-shadow: 0 15px 35px rgba(37,211,102,.25);

    transition: .3s ease;
}

.whatsapp-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(37,211,102,.35);
}

/* POINTS */

.whatsapp-points {

    list-style: none;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 10px;

    color: #444;

    font-size: .95rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

.whatsapp-float i {
    line-height: 1;
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}