:root {
    /* Updated Color Variables with softer contrast */
    --color-primary: #8FA599;    /* Lighter green */
    --color-secondary: #A08B6F;  /* Softer brown */
    --color-accent: #D4EBE0;     /* Lighter mint */
    --color-neutral: #FAFAF8;    /* Softer background */
    --color-text: #404548;       /* Softer text color */
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-neutral);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    background-color: white;
    padding: 20px 0;
    transition: background-color 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 150px;
    margin-left: -120px;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: none;
    object-fit: contain;
    margin: 8px 0;
    filter: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: initial;
    margin-left: 0;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.company-name {
    font-family: 'Bitter', serif;
    font-weight: 700;
    color: rgb(165,121,91);
    font-size: 1.4rem;
    text-shadow: none;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav a:hover {
    color: rgb(165,121,91);
}

/* Update CTA button in header */
.header .cta-button {
    background-color: rgb(165,121,91);
    color: white;
    border: none;
}

.header .cta-button:hover {
    background-color: rgb(145,101,71);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                      url('image/rubber-tree-farm.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 180px 0;
    gap: 40px;
}

.hero-description {
    font-size: 1.6rem;
    max-width: 2000px;
    min-height: 300px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: 500;
    padding: 50px 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('image/mould.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 40px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('image/tree.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Bitter', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: 500;
    padding: 0 20px;
}

/* Button Styles */
.cta-button {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6A7C70;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav {
        display: none; /* Will be replaced with hamburger menu */
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    .company-name {
        display: none; /* Hide company name on mobile for better spacing */
    }
    .hero-description {
        font-size: 1.4rem;
        padding: 35px 45px;
        margin: 0 15px;
        max-width: 98%;
        min-height: 200px;
    }
    .logo img {
        height: 30px;
    }
} 

/* Update Mobile Responsive Styles */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .products h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .product-image {
        height: 200px;
        padding: 15px;
    }
} 

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.products h2 {
    font-family: 'Bitter', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);  /* Softer shadow */
    transition: transform 0.3s ease;
}

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

.product-image {
    height: 280px;
    background-color: #fafafa;  /* Lighter background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

/* Hover effect for product images */
.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-family: 'Bitter', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.product-content p {
    color: #888;  /* Lighter gray for paragraph text */
    margin-bottom: 15px;
}

.secondary-button {
    background-color: transparent;
    color: rgb(165,121,91);
    border: 2px solid rgb(165,121,91);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: rgb(165,121,91);
    color: white;
} 

/* Core Services Section */
.core-services {
    padding: 60px 0;
    background-color: var(--color-neutral);
}

.core-services h2 {
    font-family: 'Bitter', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);  /* Softer shadow */
    transition: transform 0.3s ease;
    text-align: center;
    flex: 1;
    max-width: 350px;
    min-width: 250px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: 'Bitter', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-card p {
    color: #888;  /* Lighter gray for service text */
    line-height: 1.6;
    margin: 0;
}

/* Remove the button-related styles */
.service-card .secondary-button {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-grid {
        flex-wrap: wrap;
    }
    
    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
    }
} 

/* WhatsApp Button Styles */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;  /* WhatsApp green */
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;  /* Darker WhatsApp green */
    transform: translateY(-2px);
}

.whatsapp-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Update product content spacing */
.product-content {
    padding: 20px;
}

.product-content p {
    margin-bottom: 15px;
} 

/* Footer Styles */
.footer {
    background-color: #f8f8f9;  /* Softer footer background */
    color: #333333;  /* Darker text for contrast */
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Bitter', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-primary);  /* Use your brand color */
}

.footer-section p {
    color: #666666;  /* Medium gray text */
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    align-items: center;
    color: #555555;  /* Darker gray for contact info */
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.footer-contact:hover {
    color: var(--color-primary);  /* Brand color on hover */
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);  /* Subtle border */
    text-align: center;
}

.footer-bottom p {
    color: #777777;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
} 

.nav {
    margin-left: auto;
} 

/* Company name styles */
.company-name-header {
    text-align: center;
}

.company-name-header h1 {
    font-family: 'Bitter', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
    margin-bottom: 2px;
}

.reg-number {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-name-header {
        display: none;
    }
}

@media (max-width: 1024px) {
    .company-name-header h1 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .company-name-header {
        display: none;  /* Hide on mobile */
    }
    
    .header .container {
        grid-template-columns: auto auto;  /* Two columns on mobile */
    }
} 

.company-header-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;  /* Space between name and reg number */
}

.company-name-header h1 {
    font-family: 'Bitter', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.reg-number {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1;
    font-weight: 600;  /* Make text bolder */
    white-space: nowrap;  /* Prevent wrapping */
} 

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.title-line {
    background: white;  /* Change to white for better contrast */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: brightness(1) contrast(1);  /* Adjusted for white text */
    font-size: 3rem;
    font-weight: 800;
    padding: 0;
    line-height: 1;
}

.title-line.accent {
    font-size: 2.4rem;
    font-style: italic;
    text-transform: lowercase;
    margin: 5px 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .title-line {
        font-size: 2.2rem;
    }
    
    .title-line.accent {
        font-size: 1.8rem;
    }
} 

/* Update responsive styles */
@media (max-width: 768px) {
    .hero .container {
        width: 95%;
        padding: 30px 15px;
    }
} 

/* Add styles for the hero WhatsApp button */
.hero-whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;  /* WhatsApp green */
    color: white;
    padding: 15px 35px;  /* Larger padding for hero section */
    border-radius: 8px;
    font-size: 1.2rem;  /* Larger font size */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;  /* Space from hero-description */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-whatsapp-button:hover {
    background-color: #128C7E;  /* Darker WhatsApp green */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-whatsapp-button .whatsapp-icon {
    margin-right: 12px;
    font-size: 1.4rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-whatsapp-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
} 