/* Global Styles */
:root {
    --primary-color: #4b0000;
    /* Deep Wine Red */
    --secondary-color: #6a0d0d;
    /* Rich Maroon */
    --accent-color: #c40000;
    /* Bridal Red */
    --highlight-color: #d4af37;
    /* Royal Gold */
    --text-light: #fff5e6;
    /* Ivory */
    --text-dark: #333333;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --transition-speed: 0.4s;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    --section-padding: 100px 0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    /* Velvet Texture Pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%236a0d0d' fill-opacity='0.1'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM1 23h40v20H1V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: logoGoldenShimmer 3s ease-in-out infinite;
}

@keyframes logoGoldenShimmer {

    0%,
    100% {
        filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }

    50% {
        filter: brightness(1.35) contrast(1.15) drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    }
}

.logo img:hover {
    transform: scale(1.08) translateY(-2px);
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 18px rgba(212, 175, 55, 0.6));
    animation-play-state: paused;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links .btn-cta {
    min-width: auto;
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    background: transparent;
}

.btn-cta:hover {
    background: var(--accent-color);
    color: #fff !important;
}

/* Hero Section & Slideshow - Cinematic Update */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Dark 60% Overlay */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    background-color: rgba(0, 0, 0, 0.5);
    /* Base darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Typography Updates */
.hero-title-large {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle-royal {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #f0f0f0;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 300;
    border-bottom: none;
    display: block;
}

/* Button Updates */
.hero-cta-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #1a0000 !important;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #fcf6ba 0%, #d4af37 100%);
}

.btn-transparent {
    background: transparent;
    color: #fff !important;
    padding: 13px 38px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--highlight-color);
    color: var(--highlight-color) !important;
    transform: translateY(-3px);
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
}

.scroll-indicator i {
    color: var(--highlight-color);
    font-size: 2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle-royal {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-gold,
    .btn-transparent {
        width: 100%;
        text-align: center;
    }
}

/* Button Styles */
.btn-primary,
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 220px;
    padding: 0 28px;
    background-color: var(--accent-color);
    /* Red Accent */
    color: #ffffff !important;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover,
.btn-cta:hover {
    transform: scale(1.05);
    background-color: #a00000;
    /* Darker Red */
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 220px;
    padding: 0 28px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid var(--accent-color);
    /* Red Border */
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive Rule */
@media (max-width: 768px) {

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        display: flex;
        margin-bottom: 16px;
        /* Gap between buttons */
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-cta-group a {
        margin-right: 0 !important;
        /* Remove margin-right from inline styles */
    }
}

.btn-glass {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--highlight-color);
    color: var(--highlight-color);
    transform: translateY(-3px);
}

/* Glassmorphism Card Style with Red Tint */
.glass-card {
    background: rgba(75, 0, 0, 0.3);
    /* Red tint */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay {
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

.fade-in-up {
    animation: fadeInUp 1.5s ease-out 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--highlight-color);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--highlight-color);
    margin: 20px auto 0;
}

.section p {
    text-align: center;
    color: #ffd1d1;
    /* Light Pinkish Text */
    margin-bottom: 30px;
    font-weight: 300;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.about-text {
    text-align: left;
    /* grid-column: 1 / -1; removed to allow side-by-side in specialization section */
}

/* If the grid has 3 team members on top, and text below? */
/* Actually, based on HTML, they are siblings. 3 cards + 1 text block.
   If we want 3 cards in a row and text below, we need to structure HTML or use grid-column.
   Let's keep it simple.
*/

.about-text h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--highlight-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.member-info h3 {
    color: var(--highlight-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.member-info p {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Masonry Portfolio Grid */
.masonry-grid {
    display: columns;
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    margin-bottom: 20px;
    break-inside: avoid;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 13, 13, 0.8);
    /* Maroon Overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    /* Force 4 columns on large screens for horizontal sequence */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--highlight-color);
    background: rgba(75, 0, 0, 0.6);
}

.package-price {
    font-size: 2.5rem;
    color: var(--highlight-color);
    font-family: var(--font-heading);
    margin: 20px 0;
}

.package-features li {
    margin-bottom: 10px;
    color: #eee;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.section .btn-primary {
    display: block;
    width: fit-content;
    margin: var(--spacing-lg) auto 0;
}

/* Partner Section Styles */
.partners-section {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    border-top: 1px solid #444;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 40px;
    font-weight: 300;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.partner-card {
    position: relative;
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.partner-card img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.hover-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.4s ease;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.partner-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(196, 0, 0, 0.2);
    transform: translateY(-5px);
}

.partner-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1) translateY(-5px);
    /* Glow effect on image */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.partner-card:hover .hover-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer */
footer {
    padding: 40px 0;
    background: #2a0000;
    /* Darker Red/Brown */
    text-align: center;
    border-top: 1px solid var(--highlight-color);
    font-size: 0.9rem;
    color: #e0e0e0;
}

.footer-content .social-links {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-content .social-links a {
    font-size: 1.5rem;
    /* Larger, consistent size */
    color: var(--highlight-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-content .social-links a:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Mobile Responsive */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--highlight-color);
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .subheadline {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        /* Ensure above menu */
    }

    .nav-links {
        position: fixed;
        /* Fixed to cover screen */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        /* Darker background */
        flex-direction: column;
        justify-content: center;
        /* Center items vertically */
        padding: 0;
        transform: translateX(100%);
        /* Slide out */
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
        /* Slide in */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Larger links for touch */
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-text {
        text-align: center;
    }

    .about-text p,
    .about-text ul,
    .about-text li {
        text-align: left;
        /* Keep text left aligned for readability even in center layout */
    }

    .masonry-grid {
        column-count: 1;
    }

    .contact-split {
        flex-direction: column;
    }

    .contact-info-col,
    .contact-form-col {
        min-width: 100%;
        padding: 30px 20px;
        /* Reduced padding */
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .luxury-form-grid,
    .luxury-input-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }

    .package-card {
        padding: 20px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* =========================================
   Luxury Contact Section - Red & Gold Theme
   ========================================= */

.contact-luxury-section {
    position: relative;
    padding: 80px 0;
    background-color: #4b0000;
    background: linear-gradient(135deg, #4b0000 0%, #2e0000 100%);
    overflow: hidden;
}

/* Background Overlay for texture/depth */
.contact-luxury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(106, 13, 13, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.contact-box-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(60, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box-container:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
    /* Gold Glow */
    transform: translateY(-5px);
}

.contact-split {
    display: flex;
    flex-wrap: wrap;
}

/* Left Column - Story & Info */
.contact-info-col {
    flex: 1;
    min-width: 350px;
    padding: 50px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtext {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    /* Ivory */
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--highlight-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.info-text {
    color: #fff;
    font-size: 1rem;
}

.info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--highlight-color);
}

/* Right Column - Form */
.contact-form-col {
    flex: 1.2;
    min-width: 350px;
    padding: 50px;
    background: rgba(90, 10, 10, 0.3);
    /* Soft background #5a0a0a feel */
}

.luxury-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.full-width {
    grid-column: span 2;
}

.luxury-input-group label {
    display: block;
    color: var(--highlight-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.luxury-input {
    width: 100%;
    padding: 15px;
    background: #5a0a0a;
    /* Requested soft background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.luxury-input:focus {
    outline: none;
    border-color: var(--highlight-color);
    /* Gold focus border */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background: #400505;
}

textarea.luxury-input {
    resize: vertical;
    min-height: 120px;
}

/* Buttons */
.btn-gold-submit {
    width: 100%;
    padding: 18px;
    background: var(--highlight-color);
    /* Gold */
    color: #2a0000;
    /* Dark text */
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-gold-submit:hover {
    background: #fcf6ba;
    /* Lighter Gold */
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp-large {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-large:hover {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-split {
        flex-direction: column;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 30px 20px;
    }

    .luxury-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .contact-heading {
        font-size: 2rem;
        text-align: center;
    }

    .contact-subtext {
        text-align: center;
    }
}

/* --- Portfolio Gallery Styles --- */
.portfolio-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--highlight-color);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 12px 20px;
        /* Increase vertical padding for touch */
        font-size: 1rem;
        /* Slightly larger text */
        margin-bottom: 10px;
    }
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--highlight-color);
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns horizontal */
    gap: 30px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 col on mobile */
    }
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2/3;
    /* Standard Portrait Ratio (4:6) */
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

/* Optional: Animation for filtering */
.portfolio-item.animate {
    animation: fadeInPop 0.5s ease forwards;
}

@keyframes fadeInPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--highlight-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-overlay p {
    color: #ffd1d1;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    text-align: left;
    /* Override center alignment from .section p */
    margin-bottom: 0;
    /* Override */
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* --- Brand Strip / Featured On --- */
.brand-strip {
    padding: 60px 0;
    /* Increased padding for better spacing */
    background: #0f0f0f;
    /* Slightly lighter/neutral black for contrast */
    border-top: 1px solid var(--highlight-color);
    border-bottom: 1px solid var(--highlight-color);
    text-align: center;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    /* Increased gap */
    flex-wrap: wrap;
    margin-top: 40px;
}

.brand-link {
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo {
    height: 50px;
    /* Increased size for prominence */
    width: auto;
    /* Make logos pure white by default for maximum contrast */
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.brand-link:hover .brand-logo {
    /* Reveal original color on hover */
    filter: brightness(1) invert(0) opacity(1);
    transform: scale(1.15);
    /* Optional: Add a subtle drop shadow */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@media (max-width: 600px) {
    .brand-logos {
        gap: 20px;
    }

    .brand-logo {
        height: 30px;
    }

    .brand-link {
        padding: 10px;
        /* Add padding to increase touch area */
    }
}

/* --- Contact Page Overhaul --- */

/* Wide Form Grid */
.luxury-form-grid-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.luxury-form-grid-wide .full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .luxury-form-grid-wide {
        grid-template-columns: 1fr;
    }

    .luxury-form-grid-wide .full-width {
        grid-column: span 1;
    }
}

/* Modern Contact Card */
.contact-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

/* Sticky WhatsApp Button */
/* Unified Bottom Action Bar */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.action-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
}

.call-btn {
    background: #4b0000;
}

.call-btn:hover {
    background: #6a0d0d;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Hide overlapping elements if any */
.sticky-whatsapp {
    display: none !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Select Input Styling */
select.luxury-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

@media (max-width: 600px) {
    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Footer Logo Optimization */
footer img[alt="Picturesque Digital"] {
    height: 50px !important;
    opacity: 1 !important;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
}

footer img[alt="Picturesque Digital"]:hover {
    transform: scale(1.05);
}

/* =========================================
   About Page Refactoring Styles
   ========================================= */

.page-hero {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay for hero readability */
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.bio-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--highlight-color);
    border-radius: 4px;
    margin-bottom: 30px;
}

.bio-header {
    color: var(--highlight-color);
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bio-subhead {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.bio-text {
    text-align: left;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.feature-item {
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    color: var(--highlight-color);
    margin-right: 10px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
}

.why-choose-list {
    color: var(--text-light);
    list-style: none;
}

.why-choose-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.serving-box {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 40px;
}

/* =========================================
   Packages Page Refactoring Styles
   ========================================= */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    border-left: 2px solid var(--highlight-color);
    padding-left: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--highlight-color);
    border-radius: 50%;
}

.pricing-table-container {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.pricing-table th {
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid var(--accent-color);
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #333;
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
}

.package-card.elite-card {
    border: 2px solid var(--highlight-color);
    transform: scale(1.05);
    background: rgba(106, 13, 13, 0.6);
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.most-popular-badge {
    background: var(--highlight-color);
    color: #4b0000;
    padding: 5px 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
}

.package-features-list {
    text-align: left;
    margin-bottom: 30px;
}

.package-price-large {
    font-size: 1.5rem;
}

.package-price-sub {
    font-size: 0.8rem;
    color: #ccc;
}

.payment-term-box {
    padding: 30px;
    border: 1px solid #333;
    height: 100%;
}

/* =========================================
   Contact Page Refactoring Styles
   ========================================= */

.contact-feature-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.contact-feature-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.contact-feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-check-icon {
    color: var(--highlight-color);
    margin-right: 15px;
    margin-top: 5px;
}

.map-container {
    padding: 10px;
    height: 400px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg);
}

.feature-card {
    padding: 30px;
    text-align: center;
}

.feature-card-icon {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
}

/* =========================================
   About Page Redesign - Luxury Styles
   ========================================= */

/* Founder Spotlight Section */
.founder-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.founder-card {
    display: flex;
    background: rgba(40, 0, 0, 0.6);
    /* Deep, rich background */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
}



.founder-content-col {
    flex: 1.5;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--highlight-color);
    margin-bottom: 10px;
    display: block;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.founder-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--highlight-color);
}

.founder-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #ffd1d1;
    margin: 20px 0;
    border-left: 3px solid var(--highlight-color);
    padding-left: 20px;
}

/* Team Grid - Glassmorphism */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    /* Equal height */
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--highlight-color);
    background: rgba(40, 0, 0, 0.4);
    /* Subtle red tint on hover */
}

/* Brand Strip / Why Choose Us Icons */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0;
    background: rgba(0, 0, 0, 0.2);
    justify-items: center;
    /* Center horizontally */
    align-items: start;
    /* Align tops */
}

.stat-item {
    text-align: center;
    width: 100%;
    /* Ensure full width of grid cell */
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
        gap: 20px;
    }
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2);
}

.stat-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments for About Page */
@media (max-width: 900px) {
    .founder-card .founder-image-col {
        height: 300px;
    }
}

/* =========================================
   Home Page Luxury Upgrade (Royal Theme)
   ========================================= */

/* 1. Global Royal Headers */
.headline-royal {
    font-family: var(--font-heading);
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.headline-royal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--highlight-color);
    /* Gold Underline */
    border-radius: 2px;
}

/* 2. Hero Section Refinement */
.hero-title-large {
    font-size: 4rem !important;
    /* Larger Impact */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    /* Cinematic Shadow */
    letter-spacing: 2px;
}

.hero-subtitle-royal {
    font-family: var(--font-heading);
    letter-spacing: 4px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    color: var(--highlight-color) !important;
    font-weight: 600;
}

/* 3. Royal Bride Section (Frame) */
.image-frame-gold {
    border: 1px solid rgba(212, 175, 55, 0.6);
    /* Gold Border */
    padding: 15px;
    position: relative;
}

.image-frame-gold::before,
.image-frame-gold::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--highlight-color);
    transition: all 0.3s ease;
}

.image-frame-gold::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.image-frame-gold::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.image-frame-gold:hover::before,
.image-frame-gold:hover::after {
    width: 100%;
    height: 100%;
}

/* 4. Testimonials (Royal Watermark) */
.testimonial-card-royal {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card-royal::before {
    content: '❝';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.1);
    z-index: -1;
    line-height: 1;
}

@media (max-width: 900px) {
    .founder-card {
        flex-direction: column;
    }

    .founder-image-col {
        height: 300px;
        /* Fixed height for mobile image */
    }

    .founder-card .founder-image-col {
        height: 300px;
    }
}

/* =========================================
   Home Page Luxury Upgrade (Royal Theme)
   ========================================= */

/* 1. Global Royal Headers */
.headline-royal {
    font-family: var(--font-heading);
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.headline-royal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--highlight-color);
    /* Gold Underline */
    border-radius: 2px;
}

/* 2. Hero Section Refinement */
.hero-title-large {
    font-size: 4rem !important;
    /* Larger Impact */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    /* Cinematic Shadow */
    letter-spacing: 2px;
}

.hero-subtitle-royal {
    font-family: var(--font-heading);
    letter-spacing: 4px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    color: var(--highlight-color) !important;
    font-weight: 600;
}

/* 3. Royal Bride Section (Frame) */
.image-frame-gold {
    border: 1px solid rgba(212, 175, 55, 0.6);
    /* Gold Border */
    padding: 15px;
    position: relative;
}

.image-frame-gold::before,
.image-frame-gold::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--highlight-color);
    transition: all 0.3s ease;
}

.image-frame-gold::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.image-frame-gold::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.image-frame-gold:hover::before,
.image-frame-gold:hover::after {
    width: 100%;
    height: 100%;
}

/* 4. Testimonials (Royal Watermark) */
.testimonial-card-royal {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card-royal::before {
    content: '❝';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.1);
    z-index: -1;
    line-height: 1;
}

/* =========================================
   New Luxury Text-Focused Design (Royal Manuscript)
   ========================================= */

/* Founder Royal Card */
.founder-card-luxury {
    background: rgba(40, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 3px double var(--highlight-color);
    /* Double Gold Border */
    border-radius: 4px;
    /* Sharp elegant corners */
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.founder-card-luxury::before {
    content: '❝';
    font-family: var(--font-heading);
    /* Using Cinzel/Serif for quote mark */
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -20px;
    left: 40px;
    line-height: 1;
}

.founder-quote-large {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--highlight-color);
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.founder-signature {
    font-family: var(--font-script);
    font-size: 3rem;
    color: #fff;
    margin-top: 30px;
    transform: rotate(-5deg);
    display: inline-block;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Team Icons (Replacing Images) */
.team-icon-large {
    font-size: 4rem;
    color: var(--highlight-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: transform 0.4s ease;
}

.team-card:hover .team-icon-large {
    transform: scale(1.1) rotate(5deg);
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/pattern-bg.png');
    /* Fallback pattern if exists, else gradient */
    background-size: cover;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.philosophy-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.gold-divider {
    height: 2px;
    width: 100px;
    background: var(--highlight-color);
    margin: 30px auto;
}

/* =========================================
   Home Page Luxury Upgrade (Royal Theme)
   ========================================= */

/* 1. Global Royal Headers */
.headline-royal {
    font-family: var(--font-heading);
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.headline-royal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--highlight-color);
    /* Gold Underline */
    border-radius: 2px;
}

/* 2. Hero Section Refinement */
.hero-title-large {
    font-size: 4rem !important;
    /* Larger Impact */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    /* Cinematic Shadow */
    letter-spacing: 2px;
}

.hero-subtitle-royal {
    font-family: var(--font-heading);
    letter-spacing: 4px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    color: var(--highlight-color) !important;
    font-weight: 600;
}

/* 3. Royal Bride Section (Frame) */
.image-frame-gold {
    border: 1px solid rgba(212, 175, 55, 0.6);
    /* Gold Border */
    padding: 15px;
    position: relative;
}

.image-frame-gold::before,
.image-frame-gold::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--highlight-color);
    transition: all 0.3s ease;
}

.image-frame-gold::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.image-frame-gold::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.image-frame-gold:hover::before,
.image-frame-gold:hover::after {
    width: 100%;
    height: 100%;
}

/* 4. Testimonials (Royal Watermark) */
.testimonial-card-royal {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card-royal::before {
    content: '❝';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.1);
    z-index: -1;
    line-height: 1;
}

/* =========================================
   Lead Capture Price Reveal System
   ========================================= */

.price-locked-view {
    position: relative;
    display: inline-block;
    margin: 10px 0;
    cursor: pointer;
}

.package-price-blur {
    font-size: 1.5rem;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    user-select: none;
    filter: blur(4px);
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--highlight-color);
    font-size: 1.2rem;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

.btn-unlock {
    background: linear-gradient(135deg, #8B0000, #FF0000);
    /* Premium Red Gradient */
    border: none;
    color: #fff;
    transition: all 0.4s ease;
    padding: 12px 20px;
    font-family: var(--font-heading);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.btn-unlock::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s, transform 0.5s;
}

.btn-unlock:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-unlocked {
    background: #1a1a1a;
    /* Dark simplified background */
    color: #4CAF50;
    /* Success Green */
    border: 1px solid #333;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.8;
}

/* =========================================
   Popup/Modal Overlay System
   ========================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.popup-content {
    background: #0a0a0a;
    border: 1px solid var(--highlight-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    width: 100%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--highlight-color);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    color: #fff;
}

.btn-unlock:hover {
    background: var(--highlight-color);
    color: #000;
}

/* =========================================
   Customize Experience - Luxury Add-on Cards
   ========================================= */
.luxury-addon-card {
    background: rgba(20, 0, 0, 0.6) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.luxury-addon-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--highlight-color) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
}

.luxury-addon-card i {
    transition: all 0.4s ease;
}

.luxury-addon-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #fff !important;
    text-shadow: 0 0 10px var(--highlight-color);
}

.luxury-addon-card h4 {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.luxury-addon-card:hover h4 {
    color: var(--highlight-color);
}

/* =========================================
   10% Discount Popup
   ========================================= */
.discount-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.discount-popup-content {
    background: linear-gradient(145deg, #0a0a0a, #1a0000);
    border: 1px solid rgba(255, 23, 68, 0.4);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 0 40px rgba(255, 23, 68, 0.15), 0 0 80px rgba(255, 23, 68, 0.05);
    animation: discountZoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes discountZoomIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.discount-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 2;
}

.discount-popup-close:hover {
    color: #ff1744;
    transform: rotate(90deg);
}

.btn-discount-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #b71c1c, #ff1744);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4);
}

.btn-discount-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 23, 68, 0.6);
}

/* Strikethrough + Discount Price */
.price-original-strike {
    text-decoration: line-through;
    color: #888 !important;
    font-size: 0.9em !important;
    margin-right: 8px;
}

.price-discounted-new {
    color: #4caf50 !important;
    font-weight: bold;
}

.price-savings {
    display: block;
    font-size: 0.75rem !important;
    color: #ff1744;
    font-weight: bold;
    margin-top: 4px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .discount-popup-content {
        padding: 25px 18px;
        margin: 10px;
    }

    .discount-popup-content form div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   HOMEPAGE REDESIGN 2026 - MODERN LUXURY
   ========================================= */

/* --- 1. Cinematic Hero Section --- */
.hero-section {
    /* Ensure full viewport height and centering */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    /* Fallback */
}

.hero-overlay-dark {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-title-large {
    font-size: 5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff 20%, #d4af37 50%, #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

.hero-subtitle-royal {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* --- 2. Bento Grid Portfolio --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    padding: 20px 0;
}

.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--highlight-color);
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.bento-item:hover .bento-content {
    transform: translateY(0);
    opacity: 1;
}

/* Bento Spans */
.bento-span-2-col {
    grid-column: span 2;
}

.bento-span-2-row {
    grid-row: span 2;
}

/* Mobile Bento */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-span-2-col,
    .bento-span-2-row {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
        /* Force height on mobile */
    }

    .hero-title-large {
        font-size: 3rem;
    }
}

/* --- 3. Editorial About Section --- */
.editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    /* Overlap handled by margins */
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.editorial-img-wrapper {
    position: relative;
    z-index: 1;
}

.editorial-img {
    width: 100%;
    border-radius: 4px;
    filter: sepia(20%) contrast(1.1);
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1);
}

.editorial-text {
    background: rgba(40, 0, 0, 0.9);
    /* Deep red background */
    backdrop-filter: blur(10px);
    padding: 60px;
    margin-left: -100px;
    /* Overlap */
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.editorial-signature {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--highlight-color);
    transform: rotate(-10deg);
    position: absolute;
    bottom: 30px;
    right: 30px;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .editorial-layout {
        grid-template-columns: 1fr;
    }

    .editorial-text {
        margin-left: 0;
        margin-top: -50px;
        padding: 40px;
    }
}

/* --- 4. Infinite Marquee --- */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 60px 0;
    /* Increased padding */
    display: flex;
    align-items: center;
    /* Vertically center the content */
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    /* Vertically center items */
    animation: scroll 40s linear infinite;
    /* Slower */
    gap: 0;
    /* Remove gap to prevent loop jump */
    padding-left: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    /* Fixed height container for consistency */
    margin-right: 80px;
    /* Use margin for consistent spacing */
}

.marquee-item img {
    height: auto;
    max-height: 50px;
    /* Constrain max height */
    width: auto;
    max-width: 150px;
    /* Constrain width to prevent huge logos */
    filter: grayscale(100%) brightness(2) contrast(0.5);
    /* Unified look */
    opacity: 0.5;
    transition: all 0.4s ease;
}

.marquee-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- 5. Global Polish & Utilities --- */
.text-gold {
    color: var(--highlight-color);
}

.font-script {
    font-family: var(--font-script);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    border: 1px solid var(--highlight-color);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.trust-badge-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-bottom: 60px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--highlight-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .luxury-form-grid-wide {
        grid-template-columns: 1fr;
        /* Stack inputs */
    }

    .full-width {
        grid-column: span 1;
    }

    .hero-content {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
        /* Reduced section padding */
    }
}

/* --- 6. Blog Page Styling (Royal Theme) --- */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.blog-card-royal {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Sharp/Royal corners */
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-royal:hover {
    transform: translateY(-10px);
    border-color: var(--highlight-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-royal:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    color: var(--highlight-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 600;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--highlight-color);
}

.blog-excerpt {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more-btn {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    gap: 15px;
}