/* CSS Reset & Variable Definitions */
:root {
    --primary-color: #1b4931;       /* Deep Forest Green */
    --primary-light: #286445;       /* Leaf Green */
    --accent-color: #d4a337;        /* Golden Amber */
    --accent-light: #e6b84c;        /* Soft Gold */
    --dark-color: #0e1e16;          /* Charcoal Forest Dark */
    --light-color: #f7faf8;         /* Creamy Fresh White */
    --gray-color: #60756a;          /* Muted Sage Gray */
    --border-color: rgba(27, 73, 49, 0.08);
    --card-shadow: 0 10px 30px -10px rgba(14, 30, 22, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--light-color);
}

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

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Typography & Links */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 163, 55, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 163, 55, 0.2);
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 30%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(27, 73, 49, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 20px 0;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(247, 250, 248, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 73, 49, 0.05);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--light-color);
    z-index: 200;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-color);
}

.drawer-link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.drawer-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 55, 0.06) 0%, rgba(27, 73, 49, 0.02) 60%, transparent 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-card {
    flex: 1;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-color);
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.visual-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.floating-card-1 {
    top: 10%;
    left: -15%;
    animation: float 4s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 10%;
    right: -5%;
    animation: float 4s ease-in-out infinite 2s;
}

.visual-card-icon {
    font-size: 1.5rem;
}

.visual-card h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.visual-card p {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* About & Credentials Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.section-subtitle.light {
    color: var(--accent-light);
}

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

.section-title.light {
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-info p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.credentials-box {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.credentials-box h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.credential-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-card {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.cred-title {
    font-size: 0.8rem;
    color: var(--gray-color);
    font-weight: 600;
    text-transform: uppercase;
}

.cred-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-color);
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.copy-btn:hover {
    color: var(--accent-color);
    background-color: rgba(212, 163, 55, 0.05);
}

.copy-icon {
    width: 18px;
    height: 18px;
}

/* Custom copy tooltip */
.tooltip {
    position: absolute;
    bottom: 110%;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateY(5px);
}

.copy-btn:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: white;
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(27, 73, 49, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Product Section */
.product-section {
    padding: 100px 0;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-top: 16px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    margin-top: 50px;
}

.product-features-panel {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.product-features-panel h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.spec-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Interactive Tabs */
.interactive-display {
    display: flex;
    flex-direction: column;
}

.display-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

.tab-content {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    display: none;
    min-height: 280px;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.tab-content p {
    color: var(--gray-color);
    margin-bottom: 24px;
}

.product-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-bullets li {
    position: relative;
    padding-left: 24px;
    color: var(--dark-color);
}

.product-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
}

/* Quality & Supply Chain */
.quality-section {
    position: relative;
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .quality-section {
        height: 100vh;
        min-height: 680px;
        display: flex;
        align-items: center;
        padding: 0;
    }
}

.quality-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: white;
}

.step-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.quality-visual {
    position: relative;
}

.quality-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Product Gallery */
.product-gallery {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.gallery-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(14, 30, 22, 0.06);
    border: 1px solid rgba(27, 73, 49, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(14, 30, 22, 0.12);
    border-color: rgba(212, 163, 55, 0.3);
}

.gallery-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.06);
}

.gallery-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

.gallery-card-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.card-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--light-color);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(27, 73, 49, 0.03);
}

.card-details-list li {
    font-size: 0.88rem;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(27, 73, 49, 0.04);
    padding-bottom: 8px;
}

.card-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.card-details-list li span {
    color: var(--gray-color);
    font-weight: 500;
}

.card-order-btn {
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 12px 20px;
    border: none;
    color: white;
    background-color: var(--primary-color);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-order-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 73, 49, 0.2);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 163, 55, 0.3);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(27, 73, 49, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--gray-color);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-detail-card {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: rgba(212, 163, 55, 0.3);
}

.detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(212, 163, 55, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.detail-text strong {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.detail-text address {
    font-style: normal;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.5;
}

/* Contact Split Row (Form & Map Layout) */
.contact-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.contact-left-form {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.contact-left-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.contact-right-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    height: 520px;
}

.contact-right-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .contact-split-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-right-map {
        height: 350px;
    }
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(27, 73, 49, 0.15);
    background-color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-color);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 55, 0.1);
}

.btn-submit {
    align-self: center;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    background-color: white;
    padding: 100px 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, rgba(27, 73, 49, 0.9) 0%, rgba(14, 30, 22, 0.95) 100%);
    border: 1px solid rgba(212, 163, 55, 0.25);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.cta-card-content {
    flex: 1.2;
}

.cta-badge {
    display: inline-block;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.cta-card-action {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.cta-btn {
    padding: 16px 36px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 10px 25px rgba(212, 163, 55, 0.35);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.cta-btn svg {
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 163, 55, 0.45);
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

.cta-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 8px;
    transition: var(--transition);
}

.cta-phone-link:hover {
    color: var(--accent-light);
    transform: translateX(2px);
}

@media (max-width: 900px) {
    .cta-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 30px;
    }
    .cta-card-action {
        align-items: center;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .cta-title {
        font-size: 2.2rem;
    }
}

/* Spinner Loader */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    animation: rotate 2s linear infinite;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

.form-status {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-status.success {
    color: #2e7d32;
    display: block;
}

.form-status.error {
    color: #c62828;
    display: block;
}

/* Footer styling */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--accent-light);
    font-weight: 600;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Floating WhatsApp Badge */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}


/* Inquiry Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 30, 22, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background-color: white;
    border-radius: 24px;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 30px 60px -15px rgba(14, 30, 22, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-container.modal-form-only {
    max-width: 600px;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    font-size: 1.8rem;
    line-height: 38px;
    text-align: center;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    background-color: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

.modal-split {
    display: flex;
    min-height: 600px;
}

.modal-left-map {
    width: 50%;
    background-color: #eaeaea;
    position: relative;
}

.modal-left-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-right-form {
    width: 50%;
    padding: 50px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-right-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: left;
}

@media (max-width: 900px) {
    .modal-split {
        flex-direction: column;
    }
    .modal-left-map {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }
    .modal-right-form {
        width: 100%;
        padding: 30px 20px;
        max-height: 60vh;
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .floating-card-1 {
        left: -5%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .quality-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .quality-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}
