/* --- LUXURY DESIGN SYSTEM --- */
:root {
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --navy: #050A18;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --overlay: rgba(5, 10, 24, 0.7);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- REUSABLE ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGATION --- */
header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
}

.logo span { color: var(--gold); }

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

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

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

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(var(--overlay), var(--overlay)), 
                url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.btn-luxury {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: var(--transition-smooth);
    border: 2px solid var(--gold);
}

.btn-luxury:hover {
    background: transparent;
    color: var(--gold);
}

/* --- TESTIMONIAL SLIDER --- */
.testimonials {
    padding: 100px 5%;
    background: var(--light-gray);
    text-align: center;
}

.slider-container {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.testimonial-slide.active { opacity: 1; position: relative; }

.testimonial-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin-bottom: 20px;
}

.testimonial-slide p { font-style: italic; font-size: 1.2rem; }

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; z-index: 1001; }
}


/* --- NEW LUXURY SECTIONS --- */
.section-padding {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* VALUES / WHY CHOOSE US */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid #eee;
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

/* --- SERVICES GRID LUXURY STYLING --- */
.services-preview {
    background-color: var(--navy); /* Deep navy for contrast */
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Subtle gold border */
    transition: var(--transition-smooth);
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(5, 10, 24, 0.95));
    z-index: 1;
}

.service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    z-index: 2;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.service-text h3 {
    color: var(--white);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

/* THE LUXURY BUTTON */
.service-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    opacity: 0;
}

/* HOVER STATES */
.service-item:hover img {
    transform: scale(1.1);
}

.service-item:hover .service-text {
    transform: translateY(0);
}

.service-item:hover .service-text p,
.service-item:hover .service-btn {
    opacity: 1;
}

.service-btn:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
/* MOBILE RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .section-padding { padding: 60px 5%; }
}



/* --- SERVICE DETAIL PAGE STYLES --- */
.service-detail-block {
    padding: 80px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-grid.flipped .detail-content { order: 1; }
.detail-grid.flipped .detail-img { order: 2; }

.detail-img {
    height: 500px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--gold); /* Luxury accent */
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-category {
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 25px 0;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 0.9rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .detail-grid, .detail-grid.flipped {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .detail-grid.flipped .detail-content { order: 2; }
    .detail-grid.flipped .detail-img { order: 1; }
    
    .detail-content { padding: 0 20px; }
    .detail-img { height: 350px; margin-bottom: 30px; box-shadow: none; }
    .service-list li { justify-content: center; }
}


/* --- PRICING PAGE SPECIFIC --- */
.price-section {
    margin-bottom: 100px;
    text-align: center;
}

.hourly-tag {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.price-card {
    background: white;
    padding: 50px 30px;
    border: 1px solid #eee;
    position: relative;
    transition: var(--transition-smooth);
}

.price-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card.gold-border {
    border: 2px solid var(--gold);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 20px 0;
    color: var(--navy);
}

.price-card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-card ul {
    list-style: none;
    margin-top: 30px;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.price-card ul li::before {
    content: "✦";
    color: var(--gold);
    margin-right: 10px;
}

/* RIBBON */
.ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: white;
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* TABLE */
.luxury-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
}

.luxury-table th, .luxury-table td {
    padding: 20px;
    border: 1px solid #eee;
    text-align: left;
}

.luxury-table th {
    background: var(--navy);
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* ADD-ONS */
.add-on-container {
    background: var(--white);
    padding: 40px;
    border: 1px dashed var(--gold);
}

.add-on-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.spec-item h5 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}



/* --- SUB-PAGE HERO STYLING --- */
.hero-subpage {
    position: relative;
    height: 50vh; /* Increased slightly for better visual balance */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 80px; /* Offset for fixed header */
}

.price-hero {
    background: url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 10, 24, 0.8), rgba(5, 10, 24, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 25px auto;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
    .hero-subpage {
        height: 40vh;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* MOBILE TABLE FIX */
@media (max-width: 768px) {
    .price-card.featured { transform: scale(1); }
    .luxury-table { font-size: 0.8rem; }
}




/* --- SPECIAL OPTIONS PAGE STYLING --- */
.options-hero {
    background: url('https://images.unsplash.com/photo-1513519247388-19346eaa95d4?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: var(--white);
    padding: 50px 40px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    text-align: left;
}

.option-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.option-card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.option-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 300;
}

.option-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--light-gray);
    padding: 5px 15px;
    border-radius: 50px;
    color: var(--navy);
}

.btn-text {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SPECIAL REQUEST BOX */
.special-request-box {
    margin-top: 100px;
    background: var(--navy);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 4px;
}

.special-request-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.special-request-box p {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}



/* --- ABOUT PAGE STYLING --- */
.about-hero {
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.mission-text {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: var(--text-gray);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.founder-img {
    height: 350px;
    overflow: hidden;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.founder-card:hover .founder-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.founder-info {
    padding: 30px;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.founder-role {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.founder-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 300;
}

.v-box {
    text-align: center;
    padding: 20px;
}

.v-box i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mission-text { font-size: 1.1rem; }
}



/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-panel {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 4px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.map-container {
    margin-top: 40px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* FORM STYLING */
.luxury-form {
    background: white;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-top: 5px solid var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    transition: 0.3s;
}

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

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.9rem;
}

.w-100 { width: 100%; cursor: pointer; }

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        order: 2;
    }
}



/* --- LOGO DESIGN STYLES --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between star and text */
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 35px;
    height: 35px;
    color: var(--gold); /* Uses your gold variable */
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover .logo-icon {
    transform: rotate(180deg) scale(1.1);
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1;
}

.logo span {
    display: block; /* Puts "North Star" on a second line for a stacked professional look */
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 4.5px;
    margin-top: 4px;
}

/* Ensure Nav handles the new logo height */
nav {
    padding: 1rem 2rem;
}
