/* --- 1. Variables & Reset --- */
:root {
    --primary-dark: #002B1D; /* Deep Jungle Green */
    --primary: #004d33;      /* Base Green */
    --accent: #00e676;       /* Neon Green Pop */
    --dark: #121212;
    --light: #f4f6f8;
    --white: #ffffff;
    --gray: #8892b0;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-card: 0 10px 30px -10px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 20px rgba(0, 230, 118, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 2. Utilities & Animations --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; position: relative; }

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%); /* Angled button */
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary:hover { background: #00c853; transform: translateX(5px); }

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 10px 30px;
    font-weight: 500;
}
.btn-secondary:hover { background: var(--white); color: var(--primary-dark); }

.btn-glow {
    background: var(--primary-dark);
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    font-weight: 700;
}
.btn-glow:hover { box-shadow: var(--shadow-glow); }

/* --- 3. Navbar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 80px;
    background: rgba(0, 43, 29, 0.85); /* Transparent Dark Green */
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}
.logo i { color: var(--accent); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--accent); }

/* Animated Underline */
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--accent); transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; cursor: pointer; }
.bar { width: 25px; height: 3px; background: var(--white); margin: 5px; transition: 0.3s; }

/* --- 4. Creative Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(120deg, var(--primary-dark) 0%, #001a11 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

/* Blueprint Grid Background */
.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    z-index: 2;
}

.tagline { color: var(--accent); font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.hero-text h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-text .highlight-text {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    position: relative;
}
.hero-text p { color: var(--gray); font-size: 1.1rem; max-width: 450px; margin-bottom: 30px; }

.hero-btns { display: flex; gap: 20px; }

/* Visual Cards (Floating) */
.hero-visual { position: relative; height: 400px; }
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 260px;
    position: absolute;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.glass-card i { font-size: 2.5rem; color: var(--accent); }
.visual-info strong { display: block; font-size: 1.1rem; }
.visual-info span { font-size: 0.85rem; color: var(--gray); }

.hero-visual .glass-card:nth-child(1) { top: 20%; left: 10%; transform: rotate(-5deg); z-index: 2; }
.hero-visual .glass-card:nth-child(2) { 
    bottom: 20%; right: 10%; 
    background: rgba(0, 230, 118, 0.1); 
    border-color: var(--accent);
    transform: rotate(5deg);
}

.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(5deg); } 50% { transform: translateY(-20px) rotate(5deg); } }

/* --- 5. About & Intro --- */
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; color: var(--primary-dark); }
.section-header .line-decor { width: 80px; height: 4px; background: var(--accent); margin: 0 auto; }
.lead-text { font-size: 1.25rem; text-align: center; max-width: 800px; margin: 30px auto 0; color: #555; }

.intro-section { background: var(--white); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-accent { color: var(--primary); }
.btn-text { color: var(--primary); font-weight: 700; margin-top: 20px; display: inline-block; border-bottom: 2px solid var(--accent); }

.img-box {
    height: 350px;
    background: var(--light);
    display: flex; justify-content: center; align-items: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}
.img-box i { font-size: 8rem; color: #d1d5db; }
.pattern-dots {
    position: absolute;
    width: 200px; height: 200px;
    background-image: radial-gradient(var(--accent) 2px, transparent 2px);
    background-size: 20px 20px;
    top: -30px; right: -30px;
    z-index: 1;
    opacity: 0.5;
}

/* --- 6. Infinite Marquee Partners --- */
.partners-section { background: var(--light); padding: 60px 0; overflow: hidden; }
.marquee-wrapper { width: 100%; overflow: hidden; white-space: nowrap; margin-top: 40px; position: relative; }

/* Fades on sides */
.marquee-wrapper::before, .marquee-wrapper::after {
    content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.marquee-track { display: inline-flex; gap: 50px; animation: scroll 30s linear infinite; }
.partner-card {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600; color: #555;
    display: flex; align-items: center; gap: 10px;
}
.partner-card i { color: var(--primary); font-size: 1.2rem; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- 7. PRODUCTS SECTION (Creative Image Cards) --- */
.products-section { background: #0e1116; color: var(--white); }
.products-section .section-header h2 { color: var(--white); }
.products-section .section-header p { color: var(--gray); }

/* Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding: 0 10px; /* Slight padding for mobile safe area */
}

/* Card Container */
.creative-card {
    position: relative;
    height: 450px; /* Tall cinematic aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

/* Hover: Lift & Glow */
.creative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 230, 118, 0.15); /* Neon Green Glow */
    border-color: var(--accent);
}

/* Background Image */
.card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover: Zoom Image */
.creative-card:hover .card-bg img {
    transform: scale(1.1);
}

/* Dark Overlay Gradient (Essential for text readability) */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #001a11 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%);
    transition: background 0.4s;
}

.creative-card:hover .card-overlay {
    background: linear-gradient(to top, #001a11 20%, rgba(0, 43, 29, 0.8) 100%);
}

/* Content Area */
.card-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 35px;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Header & Accent Line */
.card-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 15px;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.creative-card:hover .accent-line {
    width: 120px; /* Expands on hover */
}

/* Description Text */
.card-content p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Button Link */
.btn-link {
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0; /* Hidden initially */
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s; /* Slight delay */
}

.btn-link i { transition: transform 0.3s; }

/* Animation Triggers */
.creative-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.creative-card:hover .btn-link {
    opacity: 1;
    transform: translateY(0);
}

.creative-card:hover .btn-link i {
    transform: translateX(8px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
    .creative-card { height: 400px; }
    
    /* On mobile, show text always, don't hide it */
    .btn-link { opacity: 1; transform: translateY(0); }
    .card-content p { transform: translateY(0); opacity: 1; }
}

/* --- 8. Footer --- */
footer { background: #050505; color: #888; padding: 80px 0 30px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }

.white-logo { color: var(--white); margin-bottom: 20px; }
.footer-about p { max-width: 350px; font-size: 0.9rem; }
.footer-nav h4, .footer-contact h4 { color: var(--white); margin-bottom: 20px; text-transform: uppercase; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact p { display: flex; gap: 10px; margin-bottom: 15px; font-size: 0.9rem; }
.footer-contact i { color: var(--accent); }

.footer-bottom { 
    border-top: 1px solid #222; 
    padding-top: 30px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.85rem; 
    max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px;
}

.social-icons a { width: 35px; height: 35px; background: #222; color: #fff; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; margin-left: 10px; }
.social-icons a:hover { background: var(--accent); color: var(--primary-dark); }

/* --- 9. Responsive --- */
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 80px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; } /* Hide 3D cards on tablet to save space */
    
    .cta-desktop { display: none; }
    .hamburger { display: block; z-index: 1001; }
    
    .nav-links {
        position: fixed; top: 0; right: 0;
        height: 100vh; width: 70%;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: 0.4s ease;
    }
    .nav-links.active { transform: translateX(0); }
    
    .split-layout, .footer-grid { grid-template-columns: 1fr; }
}

/* Animations Classes */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: 0.8s ease-out; }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.show { opacity: 1; transform: translate(0); }

/* --- Keep previous CSS Variables & Reset --- */
:root {
    --primary-dark: #002B1D; 
    --primary: #004d33;      
    --accent: #00e676;       
    --white: #ffffff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* ... (Keep existing basic styles) ... */

/* --- Updated Navbar & Dropdown Styles --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    background: rgba(0, 43, 29, 0.9); backdrop-filter: blur(12px);
    z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }

/* Nav Links Layout */
.nav-links { display: flex; gap: 30px; align-items: center; }

/* Dropdown Container */
.dropdown { position: relative; }

.dropdown .drop-btn {
    display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.dropdown .drop-btn i { font-size: 0.7em; transition: 0.3s; }

/* Dropdown Menu (Hidden by default) */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px; /* Wide enough for long text */
    background: #002217; /* Darker green */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block; /* Layout is block, vis is hidden */
}

/* Dropdown Links */
.dropdown-content li { width: 100%; }
.dropdown-content li a {
    display: block;
    padding: 12px 20px;
    color: #ccc;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-content li a:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent);
    padding-left: 25px; /* Slide effect */
}
.dropdown-content li a::after { display: none; } /* Remove underline animation from parent styles */

/* Desktop Hover Effect */
@media (min-width: 969px) {
    .dropdown:hover .dropdown-content {
        opacity: 1; visibility: visible; transform: translateY(0);
    }
    .dropdown:hover .drop-btn i { transform: rotate(180deg); color: var(--accent); }
}

/* --- Mobile Menu Styles (Updated) --- */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start; /* Aligns items to top */
        padding-top: 100px;
        padding-left: 30px;
        transform: translateX(100%);
        transition: 0.4s ease;
        overflow-y: auto; /* CRITICAL: Allows scrolling if menu is long */
        padding-bottom: 50px; /* Extra space at bottom */
    }
    .nav-links.active { transform: translateX(0); }

    .nav-links li {
        width: 100%;
        margin-bottom: 20px;
        height: auto !important; /* Prevents overlap */
        display: block; /* Ensures it takes full width */
    }
    
    /* Mobile Dropdown Logic */
    .dropdown-content {
        /* CRITICAL FIX: 'static' forces the element to take up space */
        position: static !important; 
        
        /* Reset desktop styles */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        width: 100% !important;
        border: none !important;
        
        /* Visual styling for the sub-menu */
        padding-left: 20px;
        margin-top: 0;
        margin-bottom: 10px;
        border-left: 2px solid var(--accent) !important; /* Green line indicator */
        
        /* Hidden by default on mobile */
        display: none; 
    }
    
    .dropdown-content li a { font-size: 0.85rem; padding: 10px 0; border: none; }
    
    /* Toggle Class for JS */
    .dropdown.open .dropdown-content { display: block; animation: slideDown 0.3s ease; 
    display: block !important;}
    .dropdown.open .drop-btn i { 
        transform: rotate(180deg);
        color: var(--accent); }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* --- Add/Verify these blocks in your CSS file --- */

/* OBJECTIVE & INTRO STYLING */
.section-header.center { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 10px; }
.section-header .line-decor { width: 80px; height: 4px; background: var(--accent); margin: 0 auto; }
.lead-text { font-size: 1.15rem; text-align: center; max-width: 800px; margin: 0 auto; color: #555; }

.intro-section { background: var(--white); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sub-heading { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.text-accent { color: var(--primary); }
.btn-text { color: var(--primary); font-weight: 700; margin-top: 25px; display: inline-flex; align-items: center; gap: 5px; border-bottom: 2px solid var(--accent); }
.btn-text:hover { color: var(--accent); gap: 10px; }

/* Intro Image Box */
.img-box {
    height: 400px;
    background: var(--light);
    display: flex; justify-content: center; align-items: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 0 rgba(0, 43, 29, 0.05); /* Shadow offset */
}
.img-box i { font-size: 8rem; color: #d1d5db; }
.pattern-dots {
    position: absolute; width: 150px; height: 150px;
    background-image: radial-gradient(var(--accent) 2px, transparent 2px);
    background-size: 15px 15px;
    top: -20px; right: -20px; z-index: 1; opacity: 0.6;
}

/* PARTNERS MARQUEE (Infinite Scroll) */
.partners-section { background: var(--light); padding: 80px 0; overflow: hidden; }

.marquee-wrapper { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0; }
.marquee-wrapper::before, .marquee-wrapper::after {
    content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.marquee-track { display: inline-flex; gap: 40px; animation: scroll 35s linear infinite; }
.partner-card {
    background: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600; color: #555;
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: 0.3s;
}
.partner-card:hover { border-color: var(--accent); transform: translateY(-3px); color: var(--primary-dark); }
.partner-card i { color: var(--primary); font-size: 1.3rem; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Mobile Adjustment */
@media (max-width: 968px) {
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .img-box { height: 300px; }
}

/* 
    SCOPED CSS 
    Prefix: .about-
    Global Variable Scope: .about-wrapper
*/

.about-wrapper {
    /* Local Variables for this section only */
    --about-primary: #008744;     /* Corporate Green */
    --about-primary-dark: #005c2f;
    --about-accent: #25d366;      /* Bright Accent */
    --about-dark: #333333;
    --about-gray: #666666;
    --about-light: #f9f9f9;
    --about-white: #ffffff;
    --about-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --about-font-head: 'Oswald', sans-serif;
    --about-font-body: 'Roboto', sans-serif;
    
    font-family: var(--about-font-body);
    color: var(--about-dark);
    line-height: 1.6;
    width: 100%;
    overflow: hidden; /* Prevent horizontal scroll from animations */
    background-color: var(--about-white);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Reset basics just for this wrapper */
.about-wrapper *, .about-wrapper *::before, .about-wrapper *::after {
    box-sizing: border-box;
}

.about-wrapper h2, .about-wrapper h3 {
    font-family: var(--about-font-head);
    text-transform: uppercase;
    margin: 0;
}

.about-wrapper p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--about-gray);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-mb-large {
    margin-bottom: 100px;
    margin-top: 40px;
}

/* --- Section Headers --- */
.about-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.about-title-main {
    font-size: 2.5rem;
    color: var(--about-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-title-left {
    font-size: 2.2rem;
    color: var(--about-primary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-title-left::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--about-accent);
}

.about-decor-line {
    width: 80px;
    height: 4px;
    background: var(--about-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Objective Text --- */
.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* --- Intro Grid (Director + Text) --- */
.about-grid-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

/* Director Profile Card */
.about-profile-card {
    background: var(--about-white);
    border-radius: 12px;
    box-shadow: var(--about-shadow);
    padding: 20px;
    text-align: center;
    border-top: 5px solid var(--about-primary);
    transition: transform 0.3s ease;
}

.about-profile-card:hover {
    transform: translateY(-10px);
}

.about-img-frame {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.about-director-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-frame:hover .about-director-img {
    transform: scale(1.05);
}

.about-name {
    font-size: 1.5rem;
    color: var(--about-dark);
    margin-bottom: 5px;
}

.about-designation {
    color: var(--about-primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}

.about-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about-socials a {
    width: 35px;
    height: 35px;
    background: var(--about-light);
    color: var(--about-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.about-socials a:hover {
    background: var(--about-primary);
    color: var(--about-white);
}

/* Intro Text Styling */
.about-text-block {
    text-align: justify;
}

.about-highlight-box {
    background: linear-gradient(135deg, rgba(0, 135, 68, 0.05) 0%, rgba(37, 211, 102, 0.1) 100%);
    padding: 25px;
    border-left: 4px solid var(--about-accent);
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
    position: relative;
}

.about-quote-icon {
    font-size: 1.5rem;
    color: var(--about-primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 15px;
}

.about-highlight-box p {
    margin-bottom: 0;
    color: var(--about-primary-dark);
    font-weight: 500;
}

/* --- Philosophy Section --- */
.about-bg-alt {
    background-color: var(--about-light);
    padding: 80px 0;
    margin-bottom: -80px; /* Offset the wrapper padding bottom */
}

.about-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: var(--about-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--about-accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 135, 68, 0.1);
    color: var(--about-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.about-card:hover .about-card-icon {
    background: var(--about-primary);
    color: var(--about-white);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* --- Animations Classes --- */
.about-reveal-up, 
.about-reveal-left, 
.about-reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.about-reveal-up { transform: translateY(50px); }
.about-reveal-left { transform: translateX(-50px); }
.about-reveal-right { transform: translateX(50px); }

.about-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* --- Responsive Media Queries --- */
@media screen and (max-width: 992px) {
    .about-grid-intro {
        grid-template-columns: 1fr; /* Stack Director image on top of text */
        gap: 40px;
    }
    
    .about-profile-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text-col {
        text-align: center;
    }
    
    .about-text-block {
        text-align: left; /* Keep paragraphs readable */
    }

    .about-title-left {
        text-align: center;
    }
    
    .about-grid-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 cols on tablet */
    }
}

@media screen and (max-width: 600px) {
    .about-grid-cards {
        grid-template-columns: 1fr; /* 1 col on mobile */
    }
    
    .about-title-main {
        font-size: 2rem;
    }
    
    .about-highlight-box {
        padding: 20px;
    }
}

/* 
    PALLET MANUFACTURING - PREMIUM INDUSTRIAL THEME
    Prefix: pm-
*/

.pm-section {
    /* --- VARIABLES --- */
    --pm-green: #008744;
    --pm-green-dark: #005c2f;
    --pm-accent: #00e676;
    --pm-dark: #111827;
    --pm-gray: #374151;
    --pm-light-gray: #f3f4f6;
    --pm-white: #ffffff;
    --pm-border: #e5e7eb;
    
    --pm-font-head: 'Kanit', sans-serif;
    --pm-font-body: 'Roboto', sans-serif;
    
    position: relative;
    background-color: #fafafa;
    padding: 100px 0;
    overflow: hidden;
    color: var(--pm-gray);
    font-family: var(--pm-font-body);
    line-height: 1.6;
}

/* Reset */
.pm-section *, .pm-section *::before, .pm-section *::after {
    box-sizing: border-box;
    margin: 0; padding: 0;
}

/* Background Tech Pattern */
.pm-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--pm-border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4; pointer-events: none; z-index: 1;
}

.pm-bg-shape {
    position: absolute; top: -10%; right: -5%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(0, 135, 68, 0.05) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}

.pm-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    position: relative; z-index: 2;
}

/* --- 1. INTRO LAYOUT --- */
.pm-intro-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Left Column */
.pm-label-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 135, 68, 0.1); color: var(--pm-green);
    padding: 6px 12px; border-radius: 4px; font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; margin-bottom: 20px;
}

.pm-heading {
    font-family: var(--pm-font-head);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--pm-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.pm-text-highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--pm-green);
    position: relative;
}
.pm-text-highlight::after {
    content: 'Manufacturing';
    position: absolute; left: 4px; top: 4px;
    color: rgba(0, 135, 68, 0.1);
    z-index: -1; -webkit-text-stroke: 0;
}

.pm-decor-bar {
    width: 80px; height: 6px; background: var(--pm-green);
}

/* Right Column */
.pm-lead-text {
    font-size: 1.25rem; color: var(--pm-dark); margin-bottom: 20px;
    border-left: 4px solid var(--pm-accent); padding-left: 20px;
}

.pm-body-text {
    font-size: 1rem; color: var(--pm-gray); margin-bottom: 30px;
}

.pm-features-grid {
    display: flex; gap: 30px; flex-wrap: wrap;
}

.pm-feature-item {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--pm-font-head); font-weight: 600;
    color: var(--pm-dark);
}
.pm-feature-item i {
    color: var(--pm-green); font-size: 1.2rem;
    background: #fff; padding: 10px; border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- 2. IMMERSIVE GALLERY GRID --- */
.pm-section-header { text-align: center; margin-bottom: 60px; }
.pm-section-header h3 { font-family: var(--pm-font-head); font-size: 2.5rem; color: var(--pm-dark); text-transform: uppercase; margin-bottom: 10px; }
.pm-section-header p { color: var(--pm-green); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

.pm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
}

/* Gallery Card */
.pm-gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #eee;
    
}

.pm-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 135, 68, 0.2);
    border-color: var(--pm-green);
}

/* Image Area - BIG IMAGES */
.pm-img-wrapper {
    width: 100%;
    height: 300px; /* Force large height */
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.pm-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole pallet is visible */
    padding: 20px; /* Space inside the card */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pm-gallery-card:hover .pm-gallery-img {
    transform: scale(1.1);
}

/* Hover Overlay Icon */
.pm-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 43, 29, 0.4);
    display: flex;
    align-items: center; justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.pm-hover-overlay i {
    font-size: 2rem;
    color: #fff;
    background: var(--pm-green);
    padding: 15px;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pm-gallery-card:hover .pm-hover-overlay { opacity: 1; }
.pm-gallery-card:hover .pm-hover-overlay i { transform: scale(1); }

/* Card Details */
.pm-card-details {
    padding: 25px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fff;
    position: relative;
    z-index: 2;
}

.pm-card-badge {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--pm-dark);
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.pm-card-details h4 {
    font-family: var(--pm-font-head);
    font-size: 1.4rem;
    color: var(--pm-dark);
    margin-bottom: 5px;
    margin-top: 10px;
}

.pm-card-details p {
    color: var(--pm-green);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* --- LIGHTBOX STYLES --- */
.pm-lightbox {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.95); 
    justify-content: center; align-items: center; flex-direction: column;
}

.pm-lightbox-content {
    max-width: 90%; 
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    cursor: grab;
}

.pm-close {
    position: absolute;
    top: 20px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.pm-close:hover { color: var(--pm-accent); }

#pm-caption {
    margin-top: 20px;
    color: #ccc;
    font-family: var(--pm-font-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Zoom Controls */
.pm-zoom-controls {
    position: absolute;
    bottom: 30px;
    display: flex; gap: 20px;
}
.pm-zoom-controls button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}
.pm-zoom-controls button:hover {
    background: var(--pm-green);
    border-color: var(--pm-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pm-gallery-grid { grid-template-columns: 1fr; }
    .pm-img-wrapper { height: 250px; }
}

/* 
    AUTOMOBILE PARTS MANUFACTURING - CSS
    Prefix: apm-
    Scope: .apm-section
*/

.apm-section {
    /* --- Scoped Variables --- */
    --apm-primary: #008744;      /* Brand Green */
    --apm-primary-dark: #005c2f;
    --apm-dark-bg: #111827;      /* Industrial Dark Gray */
    --apm-card-bg: #1f2937;      /* Lighter Gray for cards */
    --apm-text-light: #f3f4f6;
    --apm-text-gray: #9ca3af;
    --apm-border: #374151;
    --apm-accent-glow: rgba(0, 135, 68, 0.3);
    
    --apm-font-head: 'Rajdhani', sans-serif; /* Tech/Industrial feel */
    --apm-font-body: 'Roboto', sans-serif;

    background-color: var(--apm-dark-bg);
    color: var(--apm-text-light);
    font-family: var(--apm-font-body);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
}

/* Reset for this section */
.apm-section *, .apm-section *::before, .apm-section *::after {
    box-sizing: border-box;
    margin: 0; padding: 0;
}

/* Background Mesh Effect */
.apm-bg-mesh {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    pointer-events: none; z-index: 1;
}

.apm-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    position: relative; z-index: 2;
}

/* --- Typography & Header --- */
.apm-header-block { margin-bottom: 60px; }

.apm-subtitle {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--apm-primary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.9rem; margin-bottom: 10px;
}

.apm-title {
    font-family: var(--apm-font-head);
    font-size: 3rem; font-weight: 700;
    color: var(--apm-text-light);
    text-transform: uppercase; margin-bottom: 15px;
}

.apm-highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--apm-primary);
    position: relative;
}

.apm-divider {
    width: 80px; height: 4px; background: var(--apm-primary);
    border-radius: 2px;
}

/* --- Intro Layout (Split) --- */
.apm-intro-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; margin-bottom: 80px;
    align-items: center;
}

.apm-text-content p {
    color: var(--apm-text-gray); font-size: 1.1rem; margin-bottom: 25px;
}
.apm-text-content strong { color: var(--apm-text-light); }

.apm-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; border: 1px solid var(--apm-primary);
    color: var(--apm-primary); padding: 12px 25px;
    font-weight: 600; text-transform: uppercase; text-decoration: none;
    transition: 0.3s;
}
.apm-btn:hover {
    background: var(--apm-primary); color: white;
    box-shadow: 0 0 20px var(--apm-accent-glow);
}

/* Stats Grid */
.apm-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.apm-stat-card {
    background: var(--apm-card-bg);
    border: 1px solid var(--apm-border);
    padding: 25px; border-radius: 8px;
    transition: 0.3s;
}
.apm-stat-card:hover {
    border-color: var(--apm-primary);
    transform: translateY(-5px);
}

.apm-stat-card i {
    font-size: 2rem; color: var(--apm-primary); margin-bottom: 15px;
}
.apm-stat-card h4 {
    font-family: var(--apm-font-head); font-size: 1.2rem; margin-bottom: 5px; color: #fff;
}
.apm-stat-card span { font-size: 0.9rem; color: var(--apm-text-gray); }

/* --- Product Gallery --- */
.apm-gallery-title {
    font-family: var(--apm-font-head); font-size: 2rem;
    margin-bottom: 30px; border-left: 4px solid var(--apm-primary);
    padding-left: 15px;
}

.apm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

/* Feature Item spans 2 columns and 2 rows */
.apm-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.apm-item {
    position: relative; overflow: hidden;
    border-radius: 8px; border: 1px solid var(--apm-border);
    cursor: pointer; background: #000;
}

.apm-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.apm-item:hover .apm-img {
    transform: scale(1.1); opacity: 0.4;
}

/* Overlay Info */
.apm-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 1; transition: 0.4s;
}

.apm-overlay-content h4 {
    font-family: var(--apm-font-head); font-size: 1.3rem; color: #fff;
    transform: translateY(20px); transition: 0.4s;
}
.apm-overlay-content p {
    color: var(--apm-primary); font-size: 0.9rem;
    opacity: 0; transform: translateY(20px); transition: 0.4s 0.1s;
}

/* Hover Animations */
.apm-item:hover .apm-overlay-content h4,
.apm-item:hover .apm-overlay-content p {
    transform: translateY(0); opacity: 1;
}

.apm-icon-box {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--apm-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0); transition: 0.4s;
}
.apm-item:hover .apm-icon-box { opacity: 1; transform: scale(1); }


/* --- Animations (Scroll Reveal) --- */
.apm-reveal-up, .apm-reveal-left, .apm-reveal-right {
    opacity: 0; transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apm-reveal-up { transform: translateY(40px); }
.apm-reveal-left { transform: translateX(-40px); }
.apm-reveal-right { transform: translateX(40px); }

.apm-visible { opacity: 1; transform: translate(0, 0); }


/* --- Responsive --- */
@media (max-width: 992px) {
    .apm-intro-layout { grid-template-columns: 1fr; gap: 40px; }
    .apm-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .apm-item-large { grid-column: span 2; grid-row: span 1; height: 300px; }
    .apm-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .apm-section { padding: 60px 0; }
    .apm-stats-grid { grid-template-columns: 1fr; }
    .apm-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .apm-item-large { grid-column: span 1; }
    .apm-title { font-size: 2rem; }
}

/* 
    CREATIVE CONTACT SECTION CSS
    Prefix: cp-
*/

.cp-section {
    /* --- Scoped Theme Variables --- */
    --cp-green-dark: #002B1D;    /* Deep Industrial Green */
    --cp-green-main: #008744;    /* Brand Green */
    --cp-neon: #00e676;          /* Tech Accent */
    --cp-dark: #1e1e1e;
    --cp-gray: #6b7280;
    --cp-light: #f3f4f6;
    --cp-white: #ffffff;
    --cp-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    
    --cp-font-head: 'Oswald', sans-serif;
    --cp-font-body: 'Roboto', sans-serif;

    position: relative;
    padding: 80px 0;
    background-color: var(--cp-light);
    font-family: var(--cp-font-body);
    overflow: hidden;
    color: var(--cp-dark);
    box-sizing: border-box;
}

/* Reset */
.cp-section *, .cp-section *::before, .cp-section *::after {
    box-sizing: border-box; margin: 0; padding: 0; outline: none;
}

/* Background Technical Pattern */
.cp-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5; pointer-events: none; z-index: 1;
}

.cp-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    position: relative; z-index: 2;
}

/* --- Header --- */
.cp-header { text-align: center; margin-bottom: 50px; }

.cp-tagline {
    display: inline-block; font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--cp-green-main); background: rgba(0, 135, 68, 0.1);
    padding: 6px 12px; border-radius: 4px; margin-bottom: 15px;
}

.cp-title {
    font-family: var(--cp-font-head); font-size: 3rem;
    color: var(--cp-green-dark); text-transform: uppercase;
    margin-bottom: 10px;
}

.cp-highlight { color: var(--cp-green-main); }

.cp-subtitle { font-size: 1.1rem; color: var(--cp-gray); }

/* --- Main Card Wrapper --- */
.cp-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: var(--cp-white);
    border-radius: 20px;
    box-shadow: var(--cp-shadow);
    overflow: hidden; /* Clips the map corners */
}

/* --- Left Panel: Dark Info & Map --- */
.cp-info-panel {
    flex: 1; min-width: 350px;
    background: var(--cp-green-dark);
    color: var(--cp-white);
    display: flex; flex-direction: column;
    position: relative;
}

.cp-info-content {
    padding: 50px 40px;
    z-index: 2;
}

.cp-info-content h3 {
    font-family: var(--cp-font-head); font-size: 2rem; margin-bottom: 10px;
}
.cp-info-desc { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 0.95rem; }

/* Contact List */
.cp-contact-list { display: flex; flex-direction: column; gap: 30px; margin-bottom: 40px; }
.cp-contact-item { display: flex; gap: 20px; }

.cp-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cp-neon); font-size: 1.2rem;
    transition: 0.3s;
}
.cp-contact-item:hover .cp-icon { background: var(--cp-green-main); color: var(--cp-white); }

.cp-label {
    display: block; font-size: 0.75rem; text-transform: uppercase;
    color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-bottom: 3px;
}

.cp-link, .cp-contact-item p {
    color: var(--cp-white); text-decoration: none;
    font-size: 1rem; display: block; line-height: 1.4;
}
.cp-link:hover { color: var(--cp-neon); }

/* Socials */
.cp-socials { display: flex; gap: 15px; }
.cp-socials a {
    width: 35px; height: 35px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: var(--cp-white);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.cp-socials a:hover { background: var(--cp-neon); color: var(--cp-green-dark); transform: translateY(-3px); }

/* Embedded Map */
.cp-map-frame {
    flex-grow: 1; /* Fills remaining height */
    min-height: 250px;
    position: relative;
    border-top: 4px solid var(--cp-green-main);
}
.cp-map-overlay {
    /* Subtle overlay to blend map with dark theme */
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--cp-green-dark);
    opacity: 0.1; pointer-events: none;
}

/* --- Right Panel: Form --- */
.cp-form-panel {
    flex: 1.5; min-width: 350px;
    padding: 50px;
    background: var(--cp-white);
}

.cp-form { display: flex; flex-direction: column; gap: 25px; }
.cp-row { display: flex; gap: 25px; }
.cp-row .cp-field { width: 50%; }

/* Modern Floating Label Inputs */
.cp-field { position: relative; width: 100%; }

.cp-field input, 
.cp-field textarea,
.cp-field select {
    width: 100%;
    padding: 15px 15px 15px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    font-family: var(--cp-font-body);
    font-size: 1rem;
    color: var(--cp-dark);
    transition: 0.3s;
}

.cp-field textarea { resize: vertical; min-height: 120px; }

/* Floating Label Logic */
.cp-field label {
    position: absolute; left: 15px; top: 15px;
    color: var(--cp-gray); font-size: 1rem;
    pointer-events: none; transition: 0.3s ease;
    background: transparent; padding: 0 4px;
}

/* Select specific label */
.cp-select-label { z-index: 1; }

/* Focus & Filled State (Input has value) */
.cp-field input:focus,
.cp-field textarea:focus,
.cp-field select:focus,
.cp-field input:not(:placeholder-shown),
.cp-field textarea:not(:placeholder-shown),
.cp-field select:valid {
    border-color: var(--cp-green-main);
    background: var(--cp-white);
    box-shadow: 0 4px 12px rgba(0, 135, 68, 0.05);
}

/* Move Label Up */
.cp-field input:focus + label,
.cp-field textarea:focus + label,
.cp-field input:not(:placeholder-shown) + label,
.cp-field textarea:not(:placeholder-shown) + label,
.cp-field select:focus + label,
.cp-field select:valid + label {
    top: -10px; left: 10px;
    font-size: 0.75rem; color: var(--cp-green-main);
    background: var(--cp-white);
    font-weight: 500;
}

/* Dropdown Arrow */
.cp-arrow {
    position: absolute; right: 15px; top: 20px;
    color: var(--cp-gray); font-size: 0.8rem; pointer-events: none;
}

/* Error Text */
.cp-error-txt {
    position: absolute; bottom: -20px; right: 0;
    font-size: 0.7rem; color: #dc2626;
    opacity: 0; transform: translateY(-5px); transition: 0.3s;
}
.cp-field.error input, .cp-field.error select { border-color: #dc2626; background: #fef2f2; }
.cp-field.error .cp-error-txt { opacity: 1; transform: translateY(0); }

/* Button */
.cp-btn {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 0 0 25px; height: 55px;
    background: var(--cp-green-dark); color: var(--cp-white);
    border: none; border-radius: 8px;
    font-family: var(--cp-font-head); font-size: 1.1rem;
    cursor: pointer; overflow: hidden; transition: 0.3s;
    margin-top: 10px;
}

.cp-btn-icon {
    width: 60px; height: 100%;
    background: var(--cp-green-main);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.3s;
}

.cp-btn:hover { background: #001a11; }
.cp-btn:hover .cp-btn-icon { width: 70px; padding-left: 5px; }

/* Success Msg */
.cp-success-box {
    margin-top: 20px; padding: 15px;
    background: #dcfce7; border: 1px solid var(--cp-green-main);
    color: var(--cp-green-dark); border-radius: 8px;
    display: none; align-items: center; gap: 10px; font-weight: 500;
}

/* --- Animations --- */
.cp-reveal-up { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.cp-reveal-left { opacity: 0; transform: translateX(-30px); transition: 0.8s; }
.cp-reveal-right { opacity: 0; transform: translateX(30px); transition: 0.8s; }
.cp-visible { opacity: 1; transform: translate(0,0); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .cp-card-wrapper { flex-direction: column; }
    .cp-map-frame { min-height: 300px; }
}

@media (max-width: 600px) {
    .cp-section { padding: 50px 0; }
    .cp-title { font-size: 2.2rem; }
    .cp-form-panel { padding: 30px 20px; }
    .cp-row { flex-direction: column; gap: 25px; }
    .cp-row .cp-field { width: 100%; }
}