:root {
    --navy: #0A192F;
    --gold: #C5A059;
    --gold-hover: #dfb668;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Placeholders */
/* Update the placeholder box to act as a clean frame */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px; /* Gives the images a nice, consistent height */
    border-radius: 12px; /* Smooth rounded corners */
    overflow: hidden; /* Ensures the image doesn't poke out of the rounded corners */
    background-color: transparent; 
    border: none; /* Removes the old dashed lines */
}

/* If you kept the <span> tags, this ensures they don't break the layout */
.image-placeholder span {
    display: block;
    width: 100%;
    height: 100%;
}

/* The Magic Fix for the images */
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the box perfectly without stretching */
    object-position: center; /* Keeps the focus on the center of the image */
    display: block;
}

/* Navigation */
nav {
    background: var(--navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container for the logo */
.logo {
    display: flex;
    align-items: center; /* Ensures the logo sits perfectly in the vertical center */
}

/* The actual logo image */
.logo img {
    height: 75px; /* Adjust this number up or down to find the perfect size */
    width: auto; /* This prevents the logo from looking stretched or squished */
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 35px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gold);
}

/* Hero Section */
/* --- New Hero Section Styling --- */

/* 1. The main section: It is still full screen height (the perfect part) */
.hero {
    height: calc(100vh - 80px); /* Adjust '80px' if your nav bar has a different height */
    position: relative; /* Essential for overlaying the text */
    overflow: hidden; /* Ensures nothing spills out */
    background-color: var(--navy); /* Deep Navy color for contrasting text */
    display: flex;
    /* THE FIX IS HERE: */
    align-items: flex-start; /* This moves the content to the top instead of the center */
    padding-top: 80px; /* This gives the text some breathing room from the top edge */
    
    justify-content: center; /* This ensures the text stays perfectly centered horizontally */
    text-align: center;
   
}

/* 2. The new image container: It fills the ENTIRE section and screen width */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* This makes it full screen width */
    height: 100%; /* This makes it full section height */
    z-index: 1; /* Puts the image behind the text */
}

/* 3. The magic fix for the "wide" look: Object-fit cover makes it fill perfectly without stretching */
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes it fill the space and look wide by cropping the edges */
    object-position: center; /* Keeps the center of your image visible */
    display: block;
}

/* 4. The text container: Centered, width-limited, and sits on top of the image */
.hero-content-container {
    position: relative;
    z-index: 2; /* Sits on top of the image */
    color: var(--white); /* White text for contrast on the background image */
    margin-top: 0; 
    margin-bottom: auto;
}

/* Updated Heading: Deep Navy with a soft white glow for readability */
.hero h1 {
    color: var(--navy); /* Switched from white to your brand's dark navy */
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
    /* A soft white glow ensures it stands out even if the background gets dark */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 
                 0 2px 4px rgba(255, 255, 255, 0.7); 
}

/* Updated Subtitle: Deep Navy and slightly bolder */
.subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--navy); /* Switched from gold to navy for high contrast */
    font-weight: 700; /* Made it bolder so the thin letters don't get lost */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* --- End of Hero Update --- */

/* Collections (Alternating Zig-Zag Layout) */
.collections {
    padding: 80px 0;
}

.collection-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    width: 90%;
    gap: 60px;
}

.collection-row.reverse {
    flex-direction: row-reverse;
}

.collection-text {
    flex: 1;
}

.collection-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.collection-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-top: 15px;
}

.collection-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.collection-image {
    flex: 1;
    width: 100%;
}

/* Contact Section (Distinct Split Layout) */
.contact {
    background-color: var(--navy);
    padding: 100px 0;
    color: var(--white);
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.contact-form-card {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fbfbfb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: var(--gold-hover);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #050b14;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .collection-row, .collection-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .collection-text h2::after {
        margin: 15px auto 0;
    }
    .contact-container {
        flex-direction: column;
    }
    .contact-form-card {
        width: 100%;
        padding: 30px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-image-placeholder {
        height: 40vh;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none; /* Can add a hamburger menu later if needed */
    }
}

/* --- NEW STYLES: ABOUT US SECTION --- */
.about {
    padding: 100px 0 40px;
    background-color: var(--white);
}

.about .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.about .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

/* --- NEW STYLES: DIAMOND CERTIFICATION LOGOS --- */
.certified-text {
    margin-top: 20px;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

/* --- UPDATED STYLE: DIAMOND CERTIFICATION LOGOS (30% LARGER) --- */

.cert-logos {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    align-items: center;
}

.cert-logo-placeholder {
    /* INCREASED SIZES BY 30% */
    width: 104px;  /* Previously 80px */
    height: 78px; /* Previously 60px */
    
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cert-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Contain ensures logos are not cropped */
    padding: 8px; /* Kept the padding for nice spacing inside the bigger box */
}

/* --- NEW STYLES: GOOGLE MAP --- */
.map-container {
    margin-top: 35px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

/* --- NEW STYLES: FLOATING WHATSAPP BUTTON --- */
/* --- NEW STYLES: FLOATING WHATSAPP BUTTON (Pill Shape) --- */
.whatsapp-float {
    position: fixed;
    width: auto; /* Let the button expand to fit the text */
    height: auto;
    /* Increased margins to push it further left and up */
    bottom: 50px; 
    right: 50px; 
    
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px; /* Creates the pill shape */
    padding: 12px 24px 12px 18px; /* Breathing room inside the button */
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.25);
    z-index: 1000;
    
    display: flex;
    align-items: center;
    gap: 12px; /* Space between the icon and the text */
    
    /* Smooth transitions for hover effect */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Premium hover effect: gently lifts the button instead of just making it bigger */
.whatsapp-float:hover {
    transform: translateY(-5px); 
    background-color: #20b858;
    box-shadow: 2px 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Mobile adjustments to keep it looking good on small screens */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        padding: 10px 20px 10px 14px;
        font-size: 0.95rem;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}