:root {
    --bg-color: #f8f9fa;
    /* Light Platinum/White */
    --bg-secondary: #ffffff;
    /* Pure White */
    --text-primary: #1e293b;
    /* Deep Slate/Charcoal */
    --text-secondary: #64748b;
    /* Muted Slate */
    --accent-primary: #bda06d;
    /* Muted Gold (Professional) */
    --accent-secondary: #94a3b8;
    /* Silver */
    --accent-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    /* Navy Gradient for Buttons */
    --card-bg: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    /* Subtle dark border */
    --nav-height: 80px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography Utility */
.text-gradient {
    color: var(--text-primary);
    /* Solid color for corporate feel */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dot {
    color: var(--accent-primary);
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text-primary);
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    /* Broader radius for corporate */
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(30, 41, 59, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(30, 41, 59, 0.2);
    opacity: 1;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Product Detail Page Styles */
.product-hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(120deg, #f8f9fa 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    text-align: left;
    /* Reset text align */
}

/* Decorative Background Element */
.product-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(189, 160, 109, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.product-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-hero-content {
    order: 1;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.1;
}

.product-hero .hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.product-hero-visual {
    order: 2;
    display: flex;
    justify-content: center;
    position: relative;
}

.product-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    display: block;
    margin: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 900px) {
    .product-hero {
        text-align: center;
        padding-top: calc(var(--nav-height) + 40px);
    }

    .product-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero-content {
        order: 2;
    }

    .product-hero-visual {
        order: 1;
    }

    .product-hero-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .product-hero .hero-btns {
        justify-content: center;
    }
}

.product-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    /* Content Left, Sidebar Right */
    gap: 48px;
    padding-bottom: 100px;
    margin-top: 40px;
}

.product-main-content section {
    margin-bottom: 60px;
}

.product-main-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--accent-primary);
    font-family: var(--font-heading);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.product-main-content p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.product-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.sidebar-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--text-secondary);
    border-left: 3px solid transparent;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.2s;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: var(--accent-primary);
    background: #f8fafc;
    border-left-color: var(--accent-primary);
}

@media (max-width: 900px) {
    .product-content-wrapper {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        display: none;
        /* Can be changed to collapse or move to bottom if requested */
    }
}

/* Hero Section */
.hero {
    padding-top: var(--nav-height);
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    max-width: 1200px !important;
    display: flex !important;
    align-items: center !important;
    gap: 60px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.hero-text-col {
    flex: 1 !important;
    text-align: left !important;
}

.hero-img-col {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
}

.home-hero-img {
    width: 100% !important;
    max-width: 550px !important;
    height: auto !important;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15)) !important;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .hero-text-col {
        text-align: center !important;
    }
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align for icon appeal */
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(189, 160, 109, 0.3);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-primary);
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Products/Services */
.products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    /* Less rounded for corporate */
    padding: 0;
    /* Remove padding to allow image to span width if needed, or re-add in inner container */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    color: var(--accent-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.arrow {
    transition: transform 0.2s;
}

.card-link:hover .arrow {
    transform: translateX(4px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.1;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f3e5ab 100%);
    color: #1e293b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    animation: float-slow 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.visual-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mission/Vision Sub-section */
.about-extra {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mv-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-primary);
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details .item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.contact-details .icon {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.full-width {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #0f172a; /* Dark Slate */
    color: #cbd5e1; /* Light Gray text */
    padding: 80px 0 30px;
    border-top: none;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Brand Col */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    filter: brightness(0) invert(1) !important;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    max-width: 300px;
}

/* Links Lists */
.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #cbd5e1;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
    display: inline-block;
}

/* Contact List */
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #cbd5e1;
}

.footer-contact .icon {
    min-width: 20px;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-primary);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #64748b;
}

.legal-links a:hover {
    color: #cbd5e1;
}

/* Mobile Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Response Design */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        padding: 24px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 900;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 20px;
    }

    .nav-list a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-list li:last-child a {
        border-bottom: none;
        text-align: center;
        margin-top: 10px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.6;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #666;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

