
:root {
  --radius: 0.625rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.129 0.042 264.695);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.129 0.042 264.695);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.129 0.042 264.695);
  --primary: oklch(0.208 0.042 265.755);
  --primary-foreground: oklch(0.984 0.003 247.858);
  --secondary: oklch(0.968 0.007 247.896);
  --secondary-foreground: oklch(0.208 0.042 265.755);
  --muted: oklch(0.968 0.007 247.896);
  --muted-foreground: oklch(0.554 0.046 257.417);
  --accent: oklch(0.968 0.007 247.896);
  --accent-foreground: oklch(0.208 0.042 265.755);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --border: oklch(0.929 0.013 255.508);
  --input: oklch(0.929 0.013 255.508);
  --ring: oklch(0.704 0.04 256.788);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.984 0.003 247.858);
  --sidebar-foreground: oklch(0.129 0.042 264.695);
  --sidebar-primary: oklch(0.208 0.042 265.755);
  --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
  --sidebar-accent: oklch(0.968 0.007 247.896);
  --sidebar-accent-foreground: oklch(0.208 0.042 265.755);
  --sidebar-border: oklch(0.929 0.013 255.508);
  --sidebar-ring: oklch(0.704 0.04 256.788);
}

.dark {
  --background: oklch(0.129 0.042 264.695);
  --foreground: oklch(0.984 0.003 247.858);
  --card: oklch(0.208 0.042 265.755);
  --card-foreground: oklch(0.984 0.003 247.858);
  --popover: oklch(0.208 0.042 265.755);
  --popover-foreground: oklch(0.984 0.003 247.858);
  --primary: oklch(0.929 0.013 255.508);
  --primary-foreground: oklch(0.208 0.042 265.755);
  --secondary: oklch(0.279 0.041 260.031);
  --secondary-foreground: oklch(0.984 0.003 247.858);
  --muted: oklch(0.279 0.041 260.031);
  --muted-foreground: oklch(0.704 0.04 256.788);
  --accent: oklch(0.279 0.041 260.031);
  --accent-foreground: oklch(0.984 0.003 247.858);
  --destructive: oklch(0.704 0.191 22.216);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.551 0.027 264.364);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.208 0.042 265.755);
  --sidebar-foreground: oklch(0.984 0.003 247.858);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
  --sidebar-accent: oklch(0.279 0.041 260.031);
  --sidebar-accent-foreground: oklch(0.984 0.003 247.858);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.551 0.027 264.364);
}

@layer base {
  * {
    border-color: var(--color-border);
  }

  body {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
}

:root {
    --primary: #1a1817;     /* Orange - Fresh & Energetic */
    --secondary: #27ae60;   /* Green - Freshness */
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background: var(--dark);
    color: white;
    padding: 12px 0;
    font-size: 0.95rem;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.top-right a:hover {
    color: var(--primary);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-content .section-tag {
    display: inline-block;
    background: #e8f5e9;
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 5px;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
}

/* Mission & Values */
.mission-values {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-tag {
    background: #e8f5e9;
    color: var(--secondary);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-top: 15px;
    color: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Our Journey */
.our-journey {
    padding: 100px 0;
    text-align: center;
}

.our-journey h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 30px;
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #555;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* .footer-logo img {
    height: 60px;
    margin-bottom: 20px;
} */

.footer-about p {
    opacity: 0.85;
    margin-bottom: 25px;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    margin-right: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #444;
    opacity: 0.8;
    font-size: 0.95rem;
}



        /* =========================================
           HERO SECTION
        ========================================= */

        .hero {
            width: 100%;
            padding: 60px 0 30px;
            background: #f7f7f7;
        }

        .hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 40px;
            align-items: center;
        }

        .hero-left h1 {
            font-size: 70px;
            line-height: 1.1;
            color: #003b1f;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .hero-left p {
            font-size: 24px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 45px;
        }

        .btn-primary {
            background: linear-gradient(to right, #005f2f, #008040);
            color: #fff;
            padding: 18px 35px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
        }

        .btn-secondary {
            border: 2px solid #006633;
            color: #006633;
            padding: 18px 35px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-secondary:hover {
            background: #006633;
            color: #fff;
        }

        /* =========================================
           HERO IMAGE
        ========================================= */

        .hero-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            min-height: 700px;
        }

        .hero-image img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            border-radius: 30px;
        }

        .hero-overlay {
            position: absolute;
            /* inset: 0; */
            background: linear-gradient(to right,
                    rgba(255,255,255,0.95),
                    rgba(255,255,255,0.05));
        }

 
        /* =========================================
           ABOUT SECTION
        ========================================= */

        .about {
            padding: 100px 0;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 70px;
            align-items: center;
        }

        .section-tag {
            color: #0c8c43;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .about-content h2 {
            font-size: 55px;
            line-height: 1.2;
            margin-bottom: 25px;
            color: #111;
        }

        .about-content p {
            font-size: 20px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 30px;
            height: 550px;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: linear-gradient(to right, #005f2f, #008040);
            color: #fff;
            padding: 20px 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .about-badge i {
            font-size: 40px;
        }

        .about-badge h4 {
            font-size: 22px;
        }

        .about-badge p {
            font-size: 15px;
            margin: 0;
            color: #fff;
        }

       .stats{
    background:linear-gradient(90deg,#006b2f,#00883c);
    padding:5px 0;
    margin:0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:0;
}

.stat-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    color:#fff;

    padding:10px 20px;

    border-right:1px solid rgba(255,255,255,.15);
}

.stat-box:last-child{
    border-right:none;
}

.stat-box i{
    font-size:42px;
}

.stat-box h2{
    font-size:42px;
    line-height:1;
    margin-bottom:5px;
}

.stat-box p{
    margin:0;
    font-size:18px;
}

@media(max-width:992px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .stat-box{
        border:none;
    }
}

@media(max-width:576px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}
      .stats{
    margin-bottom:0 !important;
}

.footer{
    margin-top:0 !important;
}

/* =====================================================
   WHY IMPORTERS CHOOSE TRADEX
===================================================== */

.why-choose-section {
    padding: 60px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-choose-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.35s ease;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 81, 50, 0.1);
    border-color: #14824d;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #19a05b, #14824d);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 22px;
}

.why-choose-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.why-choose-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .why-choose-section { padding: 45px 0; }
}

@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-choose-card {
        padding: 20px 18px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin: 0;
        flex-shrink: 0;
    }
    .why-choose-card h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .why-choose-card p {
        font-size: 12px;
    }
}

/* =====================================================
   OUR ACHIEVEMENTS
===================================================== */

.achievements-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.achievements-section .section-badge {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
}

.achievements-section .section-badge i,
.achievements-section .section-badge span {
    color: #f8b400;
}

.achievements-section h2 {
    color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.achievement-box {
    text-align: center;
    padding: 30px 15px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.achievement-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 180, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #f8b400;
    font-size: 22px;
}

.achievement-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.achievement-box p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .achievement-box h3 { font-size: 28px; }
}

@media (max-width: 576px) {
    .achievements-section { padding: 40px 0; }
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .achievement-box {
        padding: 20px 10px;
    }
    .achievement-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .achievement-box h3 {
        font-size: 22px;
    }
    .achievement-box p {
        font-size: 11px;
    }
}

/* =====================================================
   CERTIFICATIONS SECTION (ENHANCED)
===================================================== */

.certifications-section {
    padding: 60px 0;
    background: #f8fafc;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.certification-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 18px;
    text-align: center;
    transition: all 0.35s ease;
}

.certification-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #14824d;
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.cert-badge.apeda-bg {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.cert-badge.fssai-bg {
    background: linear-gradient(135deg, #475569, #334155);
    box-shadow: 0 8px 20px rgba(71, 85, 105, 0.3);
}

.cert-badge.iec-bg {
    background: linear-gradient(135deg, #3b82f6, #1d5fd3);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.cert-badge.haccp-bg {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.cert-badge.iso-bg {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.certification-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.certification-card p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 992px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .certifications-section { padding: 40px 0; }
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .certification-card {
        padding: 22px 12px;
    }
    .cert-badge {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    .certification-card h4 {
        font-size: 13px;
    }
    .certification-card p {
        font-size: 11px;
    }
}

/* =====================================================
   EXPORT PROCESS
===================================================== */

.export-process-section {
    padding: 60px 0;
    background: #fff;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(20, 130, 77, 0.1);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f5ed, #d1fae5);
    border: 2px solid #14824d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #14824d;
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #14824d, #19a05b);
    color: #fff;
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 35px;
    color: #14824d;
    font-size: 18px;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    .process-step {
        flex: 0 0 calc(33.33% - 20px);
        padding: 0;
    }
    .process-arrow {
        display: none;
    }
    .step-number { font-size: 36px; }
}

@media (max-width: 576px) {
    .export-process-section { padding: 40px 0; }
    .process-timeline {
        flex-direction: column;
        gap: 24px;
    }
    .process-step {
        flex: none;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        width: 100%;
    }
    .step-number {
        font-size: 32px;
        margin-bottom: 0;
        min-width: 50px;
    }
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0;
        flex-shrink: 0;
    }
    .process-step h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .process-step p {
        font-size: 12px;
    }
}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.stars {
    color: #f8b400;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f5ed, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .testimonials-section { padding: 40px 0; }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 24px;
    }
    .testimonial-text {
        font-size: 14px;
    }
}

/* =====================================================
   REQUEST BULK QUOTATION FORM
===================================================== */

.quotation-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #07110d 0%, #0f5132 100%);
    position: relative;
    overflow: hidden;
}

.quotation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #22c55e, #f59e0b);
}

.quotation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quotation-left {
    color: #fff;
    padding-top: 10px;
}

.quotation-left .section-badge {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.quotation-left .section-badge i,
.quotation-left .section-badge span {
    color: #f8b400;
}

.quotation-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.quotation-left > p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 30px;
}

.quotation-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

.qf-item i {
    color: #22c55e;
    font-size: 18px;
}

.quotation-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.quotation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #14824d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(20, 130, 77, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #14824d, #0f6b3e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 130, 77, 0.4);
}

.quote-submit-btn i {
    font-size: 14px;
}

@media (max-width: 992px) {
    .quotation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .quotation-left {
        text-align: center;
    }
    .quotation-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .quotation-left h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .quotation-section { padding: 40px 0; }
    .quotation-form-wrapper {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .quotation-left h2 {
        font-size: 26px;
    }
    .quotation-left > p {
        font-size: 14px;
    }
    .quotation-features {
        grid-template-columns: 1fr;
    }
    .qf-item {
        font-size: 13px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 13px;
    }
    .quote-submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

