/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #f8f6f2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #0a1e3d;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0a1e3d;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0a1e3d;
}

.section-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: #0a1e3d;
    color: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    display: flex;
    gap: 0.3rem;
    margin-left: 1rem;
}

.language-switcher a {
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    transition: background 0.3s;
}

.language-switcher a:hover {
    background: #c9a84c;
    color: #ffffff !important;
}

.language-switcher a.active {
    background: #c9a84c;
    color: #ffffff !important;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    background: #c9a84c;
    color: #0a1e3d;
}

.nav-links a.active {
    background: #c9a84c;
    color: #0a1e3d;
}

/* ===== MAIN CONTENT ===== */
main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    min-height: 500px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 30, 61, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    color: #fff;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dots */
.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #c9a84c;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #c9a84c, #d4b85c);
    color: #0a1e3d;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #0a1e3d;
    transform: translateY(-3px);
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    text-align: center;
}

.stat-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #c9a84c;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.3rem;
}

/* ===== PRODUCT CARDS WITH IMAGES (Homepage) ===== */
.featured {
    text-align: center;
    margin: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    color: #0a1e3d;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #555;
    font-size: 0.95rem;
}

.center-btn {
    text-align: center;
    margin-top: 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #0a1e3d, #1a3a6a);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.cta h2 {
    color: #fff;
}

.cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

.page-content h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.about-text h2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.about-text h2:first-of-type {
    margin-top: 0;
}

.about-text p {
    color: #444;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 0.5rem 0;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.value-card {
    background: #f8f6f2;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.value-card p {
    font-size: 0.9rem;
    color: #555;
}

/* ===== PRODUCTS PAGE ===== */
.product-full-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-full-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #f8f6f2;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #c9a84c;
    transition: transform 0.3s;
}

.product-full-card:hover {
    transform: translateX(5px);
}

.product-full-image-placeholder {
    background: #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
    min-width: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-full-image-placeholder span {
    font-size: 3rem;
}

.product-full-image-placeholder small {
    font-size: 0.6rem;
    color: #999;
    margin-top: 0.3rem;
}

.product-full-info h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #0a1e3d;
}

.product-full-info p {
    color: #444;
    margin-bottom: 0.3rem;
}

.product-full-info strong {
    color: #0a1e3d;
}

.cta-mini {
    text-align: center;
    padding: 1.5rem;
    background: #f8f6f2;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.cta-mini a {
    color: #c9a84c;
    font-weight: bold;
    text-decoration: none;
}

.cta-mini a:hover {
    text-decoration: underline;
}

/* ===== PROJECTS PAGE ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.project-card {
    background: #f8f6f2;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.project-image-placeholder {
    background: #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.project-image-placeholder span {
    font-size: 3rem;
}

.project-image-placeholder small {
    font-size: 0.6rem;
    color: #999;
}

.project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.project-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.project-tag {
    display: inline-block;
    background: #0a1e3d;
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f6f2;
    border-radius: 12px;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-detail h3 {
    margin: 0;
    font-size: 1.1rem;
}

.contact-detail p {
    color: #555;
    margin: 0;
}

.contact-form {
    background: #f8f6f2;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h3 {
    margin-top: 0;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c9a84c;
    outline: none;
}

#formStatus {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
    background: #0a1e3d;
    color: #fff;
    padding: 2rem 2rem 1rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #c9a84c;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #c9a84c;
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}


/* ===== PRODUCTS PAGE (2-COLUMN LAYOUT) ===== */
.products-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.products-text h2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.products-text h2:first-of-type {
    margin-top: 0;
}

.products-text p {
    color: #444;
    margin-bottom: 0.5rem;
}

.products-text strong {
    color: #0a1e3d;
}

.product-value-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.product-value-card {
    background: #f8f6f2;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.product-value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.product-value-card p {
    font-size: 0.9rem;
    color: #555;
}




/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        width: 100%;
    }

    .language-switcher {
        margin-left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 300px;
    }

    .slider-container {
        height: 300px;
    }

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

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

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

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

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

    .product-full-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-full-image-placeholder {
        min-width: 100px;
        min-height: 100px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .page-content {
        padding: 1.5rem;
    }
}

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* ===== PRODUCTS PAGE - 2 COLUMN LAYOUT ===== */
.products-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ← This creates 2 columns */
    gap: 3rem;
    margin: 2rem 0;
}

/* Left Column */
.benefits-column {
    display: flex;
    flex-direction: column;
}

.benefits-column h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0a1e3d;
}

.benefit-item {
    background: #f8f6f2;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #c9a84c;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #0a1e3d;
}

.benefit-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Right Column */
.values-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.values-column h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a1e3d;
}

.value-card {
    background: #f8f6f2;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #0a1e3d;
}

.value-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .products-two-col {
        grid-template-columns: 1fr;  /* Stack on tablet/mobile */
        gap: 2rem;
    }
}