/*
=================================================
=== 1. FONT IMPORTS ===
=================================================
* We are adding 'Merriweather' for a premium, elegant
* heading font to pair with the clean 'Inter' body font.
*/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap');
/* Changed family:Inter to family=Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
/*
=================================================
=== 2. ROOT & "PREMIUM LUXURY" THEME VARIABLES ===
=================================================
*/
:root {
    /* Luxury Gold Palette */
    --primary-color: #DAA520; /* A rich, modern goldenrod */
    --primary-color-dark: #B8860B; /* Darker gold for hovers */
    --primary-color-rgb: 218, 165, 32; /* RGB for glow effects */
    
    /* Premium Dark Backgrounds */
    --bg-dark: #000000; /* Pure black for maximum contrast */
    --bg-light-gray: #111111; /* Off-black for sections */
    
    /* Text Colors */
    --text-light: #F5F5F5; /* Bright, clean white for headings */
    --text-color: #BDBDBD; /* Soft gray for body text */
    
    /* Glassmorphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.03); /* Extremely subtle glass */
    --glass-border: rgba(255, 255, 255, 0.1); /* The "glass edge" */
    
    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Merriweather', "Times New Roman", serif; /* NEW: Luxury font */
    
    /* Styles */
    --border-radius: 8px;
    --transition: all 0.3s ease-in-out;
}

/*
=================================================
=== 3. GLOBAL RESET & BASE STYLES ===
=================================================
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-dark);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
a:hover {
    color: var(--primary-color-dark);
}

h1, h2, h3 {
    font-family: var(--font-heading); /* Apply premium font */
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

/*
=================================================
=== 4. UTILITY & LAYOUT CLASSES ===
=================================================
*/
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.container-header{
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light-gray);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.bg-dark {
    background-color: var(--bg-dark); /* Stays pure black */
    color: var(--text-light);
}
.bg-dark h2, .bg-dark p {
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light); /* Bright white titles */
    position: relative;
    padding-bottom: 0.75rem;
}
/* Gold accent line */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.column h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/*
=================================================
=== 5. BUTTON STYLES (PREMIUM GOLD) ===
=================================================
*/
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    font-family: var(--font-body); /* Buttons use clean font */
}
/* Gold gradient button */
.btn-primary {
    background: linear-gradient(145deg, #F7D060, var(--primary-color));
    color: #000; /* Black text on gold is most readable */
    border: none;
    padding: 0.85rem 1.6rem;
    font-weight: 700;
    box-shadow: 0 4px 15px -5px rgba(var(--primary-color-rgb), 0.3);
}
.btn-primary:hover {
    background: linear-gradient(145deg, #F7D060, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px -5px rgba(var(--primary-color-rgb), 0.6);
}
.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}
/* Gold outline button */
.btn-nav {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}
.btn-nav:hover {
    background-color: var(--primary-color);
    color: #000;
}

/*
=================================================
=== 6. HEADER (GLASSMORPHISM) ===
=================================================
*/
.site-header {
    background: rgba(0, 0, 0, 0.7); /* 70% transparent black */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo {
    font-family: 'Montserrat';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}
.logo:hover {
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links li {
    margin-left: 1.5rem;
}
.nav-links a {
    font-weight: 600;
    color: var(--text-color);
}
.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

/*
=================================================
=== 7. HERO SECTION ===
=================================================
*/
#hero {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* Darker overlay */
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content {
    max-width: 800px;
}
.hero-content h1 {
    color: var(--text-light);
    font-size: 3.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
#hero .btn-primary:hover {
    box-shadow: 0 0 30px 10px rgba(var(--primary-color-rgb), 0.4);
}

/*
=================================================
=== 8. FEATURES GRID (GLASS CARDS) ===
=================================================
*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    /* This is the core "glassy" effect */
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05); /* Brighter glass */
    border-color: rgba(var(--primary-color-rgb), 0.5); /* Gold edge */
}
.feature-card h3 {
    color: var(--primary-color);
}

/*
=================================================
=== 9. AREAS & TIMINGS (LISTS) ===
=================================================
*/
.area-list li, .time-list li {
    position: relative;
    padding: 0.25rem 0.5rem 0.25rem 1.75rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    transition: var(--transition);
}
.area-list li:hover, .time-list li:hover {
    background-color: var(--glass-bg);
    color: var(--primary-color-dark);
}
.area-list li::before, .time-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    left: 0.5rem;
    top: 0.35rem;
}
.time-list li {
    font-weight: 600;
}

/*
=================================================
=== 10. CALL TO ACTION (CTA) ===
=================================================
*/
#cta {
    text-align: center;
    background-color: var(--bg-light-gray); /* Off-black */
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
#cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/*
=================================================
=== 11. FOOTER ===
=================================================
*/
.site-footer {
    background: #050505;
    color: #777;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

/*
=================================================
=== 12. RESPONSIVE (MOBILE) STYLES ===
=================================================
*/
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .main-nav{ padding:0rem;}
    #hero .hero-content h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .container { padding: 1rem 1rem; }
    .container-header { padding: 1rem 1rem; }
    .logo-img{ width:95px !important; }
    section { padding: 3rem 0; }
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* --- Mobile Navigation --- */
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        /* Updated to dark glass */
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        transition: right 0.4s ease-in-out;
    }
    .nav-links.active {
        display: flex;
        right: 0;
    }
    .nav-links li { margin: 1.5rem 0; }
    .nav-links a { font-size: 1.25rem; }
    .btn-nav {
        margin-left: 0;
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/*
=================================================
=== 13. BLOG PAGE STYLES ===
=================================================
*/
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--glass-border);
}
.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}
.card-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--text-color);
}
.feature-card {
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.feature-card a { text-decoration: none; }
.feature-card a:hover h3 {
    color: var(--primary-color);
}

/*
=================================================
=== 14. CONTACT PAGE (GLASS FORM) ===
=================================================
*/
.contact-method {
    margin-bottom: 1.5rem;
}
.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}
.contact-link:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}
#contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

/*
=================================================
=== 15. SINGLE BLOG POST STYLES ===
=================================================
*/
.post-header {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--bg-light-gray);
}
.post-title {
    color: var(--primary-color);
    font-size: 2.75rem;
}
.post-meta {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}
.post-content {
    max-width: 800px;
    margin: 2rem auto;
}
.post-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.7;
}
.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.post-content h2,
.post-content h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.post-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 1px solid var(--glass-border);
}

.post-content blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-color);
    background-color: var(--bg-light-gray);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
}

/*
=================================================
=== 16. TESTIMONIAL STYLES ===
=================================================
*/
.testimonial-author {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/*
=================================================
=== 17. FLOATING WHATSAPP BUTTON ===
=================================================
*/
.whatsapp-float-button {
    /* Positioning */
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000; /* Sits on top of everything */

    /* Sizing & Styling */
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFFFFF;
    border-radius: 50%; /* Makes it a circle */
    
    /* Centering the icon */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Premium Feel */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-float-button svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF; /* Makes the SVG icon white */
}

/* * Premium Luxury Hover Effect 
* We use our gold accent color for the shadow glow!
*/
.whatsapp-float-button:hover {
    transform: translateY(-4px);
    background-color: #128C7E; /* Darker WhatsApp green */
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.3); /* Gold Glow */
}



/*
=================================================
=== 17. NEW: HOMEPAGE BLOG PREVIEW SCROLLER ===
=================================================
*/

.blog-scroll-wrapper {
    /* This is the magic for a horizontal scroll */
    overflow-x: auto;
    overflow-y: hidden; /* Hide vertical scrollbar */
    padding: 1.5rem 0;
}

.blog-preview-grid {
    display: flex; /* Arranges cards in a row */
    flex-wrap: nowrap; /* Prevents wrapping, forces scroll */
    gap: 2rem; /* Space between cards */
}

.blog-preview-card {
    /* This forces all cards to be the same width */
    /* and prevents them from shrinking */
    width: 320px; 
    flex-shrink: 0;
}

/* * NEW: Style the scrollbar to match the luxury theme
* (For Chrome, Safari, Edge) 
*/
.blog-scroll-wrapper::-webkit-scrollbar {
    height: 10px;
}
.blog-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--bg-light-gray); /* Off-black track */
    border-radius: 10px;
}
.blog-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary-color); /* Gold scrollbar */
    border-radius: 10px;
    border: 2px solid var(--bg-light-gray); /* Creates a nice border */
}
.blog-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color-dark); /* Darker gold */
}

/* =================================================
=== 18. FLOATING CALL BUTTON (Added) ===
=================================================
*/
.call-float-button {
    /* Positioning - Sits nicely above the WhatsApp button */
    position: fixed;
    bottom: 100px; /* 25px (bottom) + 60px (height) + 15px (gap) */
    right: 25px;
    z-index: 1000;

    /* Sizing & Styling */
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Standard "Call" Blue */
    color: #FFFFFF;
    border-radius: 50%;
    
    /* Centering the icon */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Premium Feel (Matches your theme) */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.call-float-button svg {
    width: 26px; /* Phone icon size */
    height: 26px;
    fill: #FFFFFF;
}

/* Hover Effect */
.call-float-button:hover {
    transform: translateY(-4px);
    background-color: #0056b3; /* Darker Blue */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4); /* Blue Glow */
}

/* Mobile adjustment: Ensure they don't block content on small screens */
@media (max-width: 768px) {
    .whatsapp-float-button { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .call-float-button { bottom: 85px; right: 20px; width: 55px; height: 55px; }
}