/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: #1f3d2b; /* Deep green */
    color: #fff;
    padding: 16px 0;
    text-align: center;
    font-size: 14px;
}

.contact-info a {
    color: #fff;
    font-weight: 600;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    color: #1f3d2b;
}

.navbar {
    display: flex;
    gap: 30px;              /* ← adjust the inter-distance between the linking buttons on navbar */
}

.navbar a {
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.navbar a:hover {
    color: #1f3d2b;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Page Hero (for subpages) */
.page-hero {
    background-color: #1f3d2b;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero-content p {
    font-size: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn.primary {
    background-color: #1f3d2b;
    color: #fff;
}

.btn.primary:hover {
    background-color: #163021;
}

.btn.secondary {
    background-color: #f8f9fa;
    color: #1f3d2b;
    border: 2px solid #1f3d2b;
}

.btn.secondary:hover {
    background-color: #1f3d2b;
    color: #fff;
}

.btn.whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn.whatsapp:hover {
    background-color: #20b058;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px 0 5px;
    color: #1f3d2b;
    font-size: 24px;
}

.product-card p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 16px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 24px;
    color: #1f3d2b;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    background: #1f3d2b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.map-section {
    grid-column: span 2;
}

/* Footer */
.footer {
    background-color: #1f3d2b;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
}

.footer-section ul li a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20b058;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 1s ease forwards;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo-nav {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-section {
        grid-column: span 1;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Logo styling */
.logo-container {
    max-width: 120px;           /* ← adjust this value to control logo size */
    flex-shrink: 0;
}

.main-logo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: subtle hover effect */
.main-logo:hover {
    transform: scale(1.04);
}

/* Make sure the nav items align nicely with the logo */
.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-container {
        max-width: 180px;       /* smaller on mobile */
    }
    
    .logo-nav {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .navbar {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f3d2b;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
    }
}

.map-section {
    margin: 40px 0;                    /* Good spacing above/below */
    text-align: center;                /* Centers heading and map if needed */
}

.map-section h2 {
    margin-bottom: 15px;
    color: #1f3d2b;
}

.map-section p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.map-section iframe {
    border: none;
    border-radius: 8px;                /* Optional: nice rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);  /* Subtle shadow for premium look */
    width: 100% !important;            /* Force full width */
    height: 500px !important;          /* Match the HTML height */
}

/* Make sure it takes full available space in grid/contact layout */
@media (max-width: 768px) {
    .map-section iframe {
        height: 400px !important;      /* Smaller on mobile to avoid scroll issues */
    }
}





.owner-section {
    margin-top: 35px;
    padding: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.owner-section h4 {
    color: #c9a44c;               /* gold/timber accent color */
    margin-bottom: 12px;
    font-size: 18px;
}

.owner-section p {
    margin: 8px 0;
    font-size: 15px;
    color: #ddd;
}

.owner-section strong {
    color: #fff;
}