:root {
    /* Muted and Rich Yellow/Golds for a 'Luxury' rather than 'Basic' feel */
    --gold: #FFD700;        /* Original Gold */
    --gold-muted: #E6C200;  /* Muted Gold for text accents */
    --gold-bg: #FFFDF0;     /* Extremely pale ivory/gold background */
    --navy: #1E293B;        /* Deep Navy for contrast/professionalism */
    --glass: rgba(255, 255, 255, 0.6); /* Translucent base for Glassmorphism */
    --text: #334155;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    /* Subtle Animated Gradient restored but made more professional */
    background: linear-gradient(-45deg, 
    rgba(255, 255, 150),  /* Semi-transparent #FFD755 */
    rgba(255, 255, 225), /* Semi-transparent #FFF999 */
    rgba(255, 255, 225), /* Semi-transparent #FFFDF0 */
    rgba(255, 255, 255)  /* Semi-transparent #FFFFFF */
);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sophisticated Typography Pairing */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-weight: 600; }

.container { width: 90%; max-width: 1100px; margin: auto; }

/* Refined Header (Replacing the original basic nav) */
.main-header { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; }
.brand-wrapper { display: flex; align-items: center; gap: 12px; }
.header-logo { width: 60px; height: auto; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--navy); }
.brand-text span { color: var(--gold-muted); font-weight: 400; font-size: 1.1rem; }

.header-cta { text-decoration: none; color: var(--navy); border: 1px solid #E2E8F0; padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; transition: 0.3s; background: #fff; }
.header-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Hero Section: The "Glassmorphism" effect */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    /* Subtle background image restored and enhanced with overlay for contrast */
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url('fieldbg.png') center center/cover;
    background-attachment: fixed; /* Parallax effect */
    
}

.hero-glass-card {
    position: relative;
    max-width: 700px;
    padding: 60px;
    background-color: #fff; /* Enhanced background to a solid high contrast color for readability */
    backdrop-filter: blur(12px); /* Key Glassmorphism effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden; /* For shimmer animation */
}

/* Reintegrated the 'Polish' animation */
.polish-shimmer {
    position: absolute;
    top: 0; left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-30deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.badge { font-size: 0.7rem; letter-spacing: 3px; color: var(--gold-muted); font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; margin-bottom: 25px; }
.italic { font-style: italic; font-weight: 400; color: var(--gold-muted); }
.hero p { font-size: 1rem; color: #64748b; max-width: 500px; margin-bottom: 40px; }

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
    margin: 5px;
    
    
    /* Required for the sparkle effect */
    position: relative;
    overflow: hidden;
}

/* The Sparkle/Shimmer Element */
.btn-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 60, 0.2), /* Subtle gold tint */
        transparent
    );
    transform: skewX(-30deg);
    animation: button-shimmer 7s infinite;
}

@keyframes button-shimmer {
    0% { left: -110%; }
    60% { left: 110%; }
    100% { left: 110%; }
}

.btn-main:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3); 
    background: #1e293b; /* Slightly lighter navy on hover */
    color: white;
}
.btn-icon { font-size: 1.5rem; }
.btn-title { 
    font-weight: 600; 
    display: block; 
    font-size: 1rem; /* Increased slightly */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-phone { font-size: 0.8rem; opacity: 0.8; font-weight: 300; }

/* Services Section */
.services { padding: 50px 0; }
.section-title { margin-bottom: 60px; text-align: center; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.gold-divider { width: 50px; height: 3px; background: var(--gold-muted); margin: auto; }

.service-grid { 
    display: grid; 
    /* Switch to a single column layout */
    grid-template-columns: 1fr; 
    /* Keeps the cards from becoming uncomfortably wide on desktop */
    max-width: 850px;
    margin: 0 auto;
    gap: 40px; 
}

.service-card { 
    background: #fff; 
    padding: 60px 40px; /* Increased padding for luxury feel */
    border-radius: 12px; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    border: 1px solid #f1f5f9;
    text-align: center;
    /* Added a subtle shadow to match the gallery slider */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 40px 80px rgba(0,0,0,0.05); 
    border-color: var(--gold);
}

.service-card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 20px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; /* Adds a professional, gallery-style feel */
}

.service-card p { 
    font-size: 0.95rem; 
    color: #64748b; 
    line-height: 1.8;
    font-weight: 300;
}

/* ... [Keep rest of CSS] ... */

/* Modal Styling (Retained and Cleaned) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 1000; padding: 20px; }
.modal-content { background: var(--white); width: 100%; max-width: 500px; padding: 40px; border-radius: 15px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.modal-header h2 { font-size: 2rem; margin-bottom: 15px; }
.close-btn { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #cbd5e1; }
.pitch-list { list-style: none; margin: 25px 0; }
.pitch-list li { padding: 10px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.85rem; color: #64748b; }
.modal-button-group { display: flex; flex-direction: column; gap: 10px; }
.call-now-btn { background: var(--navy); color: var(--white); padding: 15px; text-decoration: none; text-align: center; font-weight: 600; border-radius: 8px; }
.secondary-btn { background: transparent; border: 1px solid #e2e8f0; padding: 12px; cursor: pointer; border-radius: 8px; color: #64748b; }

/* Prevent scrolling when modal is active */
body.modal-active { overflow: hidden; }

/* Footer */
footer { padding: 50px 0; background: #fff; border-top: 1px solid #f1f5f9; }
.footer-flex { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 600; color: var(--navy); font-size: 1.2rem; }
.footer-logo { width: 300px; height: auto; }
.footer-links a { text-decoration: none; color: var(--navy); margin: 0 10px; font-weight: 500; font-size: 1rem; }
.copyright { font-size: 1rem; color: #94a3b8; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-glass-card { padding: 40px 25px; }
    .hero h1 { font-size: 2.2rem; }
    .main-header { padding: 20px 0; }
    .brand-text { font-size: 1.1rem; }
    .brand-text span { font-size: 0.9rem; }
}


/* Reviews Section Styling */
.reviews { 
    padding: 50px 0; 
    background: transparent; 
}

.review-grid { 
    display: grid; 
    /* Changed from repeat(auto-fit...) to a single column */
    grid-template-columns: 1fr; 
    /* Max-width and margin auto keeps them from stretching too wide on desktop */
    max-width: 800px;
    margin: 0 auto;
    gap: 30px; 
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    /* Ensures text doesn't feel cramped */
    text-align: left; 
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stars { 
    color: var(--gold-muted); 
    font-size: 1.2rem; 
    margin-bottom: 15px; 
}

.review-card p {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* Gallery Section */
.gallery { padding: 50px 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 350px; /* Fixed height for a clean look */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Subtle Caption Overlay */
.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.7));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover figcaption {
    opacity: 1;
}


.gallery-slider {
    position: relative;
    max-width: 900px;
    height: 500px; /* Adjust based on your preferred aspect ratio */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid #f1f5f9;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: crossfade 32s infinite; /* 8 images * 4 seconds each */
}

/* Stagger the animation start times in 4s increments */
.gallery-slider img:nth-child(2) { animation-delay: 4s; }
.gallery-slider img:nth-child(3) { animation-delay: 8s; }
.gallery-slider img:nth-child(4) { animation-delay: 12s; }
.gallery-slider img:nth-child(5) { animation-delay: 16s; }
.gallery-slider img:nth-child(6) { animation-delay: 20s; }
.gallery-slider img:nth-child(7) { animation-delay: 24s; }
.gallery-slider img:nth-child(8) { animation-delay: 28s; }

@keyframes crossfade {
    0% { opacity: 0; }
    2% { opacity: 1; }    /* Fade in quickly (approx 0.6s) */
    12.5% { opacity: 1; } /* Fully visible until the 4s mark */
    14.5% { opacity: 0; } /* Fade out before next image starts */
    100% { opacity: 0; }
}