/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: #333;
    margin-bottom: 1rem;
}

/* Buttons and Links */
.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.btn-solid {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #000;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-solid:hover {
    background: #333;
}

.blue-btn {
    border-color: #000;
    color: #000;
}

.blue-btn:hover {
    background: #000;
    color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-right {
    gap: 1rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-item:hover,
.top-bar-social-item:hover {
    color: #DEA000;
}

.top-bar-item svg,
.top-bar-item i {
    width: 18px;
    height: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-social-item {
    color: #ddd;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.top-bar-social-item svg,
.top-bar-social-item i {
    width: 20px;
    height: 20px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .top-bar-container {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .top-bar-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.8rem;
    }
}

/* Navbar */
.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 993px) {
    .navbar.nav-up {
        transform: translateY(-100%);
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 1rem;
}

.main-nav a:hover {
    color: #DEA000;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.icon-link svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 400px;
    max-height: 80vh;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background: #000;
    display: flex;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.script-text {
    font-family: 'Playball', cursive;
    font-size: clamp(1.5rem, 6vw, 6rem);
    color: #fff;
    margin-bottom: -1.5vw;
    /* Pull main title up to overlap slightly */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 8vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.sub-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    width: 100%;
}

.sub-title-row .main-title.bottom {
    font-size: clamp(2rem, 8vw, 9rem);
}

.flank {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    transform: translateY(-0.5vw);
}

.flank span {
    color: #DEA000;
    font-weight: 700;
    font-size: clamp(0.7rem, 2.5vw, 2.5rem);
    letter-spacing: 5px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.flank .line {
    width: 100%;
    height: 2px;
    background-color: #DEA000;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Badge */
.hero-badge {
    position: absolute;
    bottom: clamp(10px, 3vw, 30px);
    left: clamp(10px, 3vw, 30px);
    width: clamp(80px, 14vw, 200px);
    height: clamp(80px, 14vw, 200px);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulseBadge 4s infinite alternate;
}

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

.hero-badge .badge-text {
    font-size: clamp(0.5rem, 1.1vw, 1.15rem);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    transform: rotate(-5deg);
}

@keyframes pulseBadge {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.05) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .script-text {
        font-size: clamp(2.2rem, 8.5vw, 6rem);
    }

    .main-title,
    .sub-title-row .main-title.bottom {
        font-size: clamp(2.6rem, 10.5vw, 9rem);
    }

    .flank span {
        font-size: clamp(0.85rem, 3.2vw, 2.5rem);
    }

    .hero-badge {
        width: clamp(115px, 26vw, 160px);
        height: clamp(115px, 26vw, 160px);
    }

    .hero-badge .badge-text {
        font-size: clamp(0.72rem, 2.2vw, 1rem);
    }
}

/* Why We Are The Best Section (Editorial) */
.why-we-are-best {
    padding: 8rem 5%;
    background-color: #faf9f6;
    /* Very subtle warm off-white */
    border-top: 1px solid #eaeaea;
}

.why-best-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: flex-start;
}

.why-best-left {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
}

.why-best-title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.1;
    color: #111;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.cursive-accent {
    font-family: 'Playball', cursive;
    font-size: 4.5rem;
    color: #cda036;
    /* A refined, muted gold */
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 0;
}

.why-best-stats {
    display: flex;
    gap: 3rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-icon {
    color: #cda036;
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.stat-num {
    font-size: 2.75rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
    font-family: inherit;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.4rem;
}

.why-best-right {
    flex: 1.2 1 500px;
    padding-top: 1rem;
}

.why-best-right p.lead-text {
    font-size: 1.4rem;
    line-height: 1.55;
    color: #111;
    font-weight: 400;
    margin-bottom: 2rem;
}

.why-best-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.highlight-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #444;
}

.highlight-point i {
    color: #cda036;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .why-best-container {
        gap: 4rem;
    }

    .why-best-title {
        font-size: 1.8rem;
    }

    .cursive-accent {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .why-we-are-best {
        padding: 5rem 5%;
    }

    .why-best-stats {
        gap: 2rem;
    }

    .why-best-right p.lead-text {
        font-size: 1.3rem;
    }
}

/* Features */
.features {
    padding: 0 5%;
    background: transparent;
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    /* Sit below hero section */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid #facc15;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 1.5rem 1.25rem;
    border-right: 2px solid #facc15;
    transition: background 0.3s ease;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.96);
}

.feature-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    color: #cda036;
    font-size: 2.6rem;
    padding-right: 1.2rem;
    padding-left: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.08);
    color: #b48325;
}

.feature-item h3 {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.feature-item p {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #444;
    padding-right: 0.5rem;
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 0.8rem 0.5rem;
        border-right: none;
        border-bottom: 1px solid #facc15;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-icon {
        font-size: 2rem;
        padding-right: 0.8rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
        padding-right: 0;
    }
}

/* Promo */
.promo {
    padding: 4rem 5%;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-content.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-image-box {
    position: relative;
}

.promo-image-box img {
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-float-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: 1px solid rgba(222, 160, 0, 0.3);
    color: #fff;
    width: 80%;
    max-width: 400px;
}

.badge-accent {
    color: #DEA000;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.badge-number span {
    font-size: 4rem;
    display: block;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #DEA000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: #DEA000;
    margin: 1.5rem auto 0;
}

.promo-header {
    background: #000;
    color: white;
    padding: 1rem;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}

.promo-sub {
    background: #f0f0f0;
    padding: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.promo-content h2 {
    color: #000;
    margin-bottom: 1.5rem;
}

.promo-locations {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .promo {
        background: transparent;
        padding: 3rem 5%;
    }

    .promo-content.glass-panel {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 1.5rem;
        border-radius: 8px;
    }

    .promo-header {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .promo-sub {
        font-size: 0.9rem;
        padding: 0.4rem;
        margin-bottom: 1rem;
    }

    .promo-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .badge-number span {
        font-size: 2.5rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }
}

/* Google Badge */
.google-badge-section {
    display: flex;
    justify-content: center;
    padding: 2rem 5%;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.google-icon img {
    width: 40px;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-num {
    font-weight: 700;
}

.stars {
    color: #DEA000;
    letter-spacing: 2px;
}

.review-count {
    font-size: 0.8rem;
    color: #666;
}

/* Collage */
.collage {
    padding: 2rem 5%;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.span-col-2 {
    grid-column: span 2;
}

/* Our Team */
.team-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
    background: #000;
}

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

.team-image-wrapper {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.85;
    transition: opacity 0.4s ease, padding-bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-overlay {
    opacity: 1;
    padding-bottom: 3rem;
}

.team-info {
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-info {
    transform: translateY(0);
}

.team-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-info p {
    font-size: 1rem;
    font-weight: 400;
    color: #ddd;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Consultation */
.consultation-banner {
    padding: 5rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.consultation-banner h2 {
    color: #000;
    font-size: 2rem;
}

.consultation-banner p {
    color: #555;
    font-size: 1.1rem;
}

/* Three Steps */
.three-steps {
    max-width: 1400px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    align-items: center;
}

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

.step-image,
.step-text {
    flex: 1;
}

.step-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
}

.step-text {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f8f8f8;
}

.step-row:nth-child(even) .step-text {
    background: #fff;
}

.step-number {
    font-size: 4rem;
    font-weight: 300;
    color: #000;
    margin-right: 2rem;
    line-height: 1;
}

.step-content-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Reviews Top Bar */
.reviews-top-bar {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.reviews-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reviews-logo {
    height: 40px;
}

.rating-line {
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.rating-num {
    font-weight: 700;
}

.reviews-info-text strong {
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 1rem 5% 5rem 5%;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.testimonials-left {
    flex: 0 0 300px;
    border-left: 4px solid #d4af37;
    padding-left: 1.5rem;
}

.testimonials-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.testimonials-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.testimonial-slide {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.testimonial-image {
    flex: 0 0 250px;
    height: 250px;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 5;
}

.testimonial-arrow {
    background: #f4f4f4;
    border: 1px solid #e2e2e2;
    color: #111;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.testimonial-arrow:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot.active {
    background: #d4af37;
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .testimonials-container {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonials-left {
        flex: auto;
        border-left: none;
        border-bottom: 4px solid #d4af37;
        padding-left: 0;
        padding-bottom: 1rem;
        text-align: center;
    }

    .testimonial-slide {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        flex: 0 0 200px;
        height: 200px;
        margin: 0 auto;
    }

    .testimonial-controls {
        justify-content: center;
        margin-top: 2rem;
    }
}

/* Gallery Grid Layout */
.gallery-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.gallery-container {
    max-width: 1920px;
    margin: 0 auto;
}

.suit-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.suit-card {
    background: #fff;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
}

.suit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.suit-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

/* Occasions Text Block */
.occasions-text-block {
    padding: 5rem 5%;
    text-align: center;
}

.occasions-container {
    max-width: 800px;
    margin: 0 auto;
}

.occasions-container h2 {
    margin-bottom: 2rem;
}

/* Virtual Tours */
.virtual-tours {
    display: flex;
    flex-direction: column;
}

.tour-box {
    display: flex;
    height: 60vh;
}

.tour-box.reverse {
    flex-direction: row-reverse;
}

.tour-content {
    flex: 4;
    background: #0d0d0d;
    color: #fff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.tour-eyebrow {
    color: #cda036;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.tour-content h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.tour-content p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tour-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.tour-list li {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tour-list li i {
    color: #cda036;
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

.tour-content .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    transition: all 0.3s ease;
}

.tour-content .btn-outline:hover {
    background: #cda036;
    border-color: #cda036;
    color: #000;
}

.tour-visual {
    flex: 6;
    position: relative;
    overflow: hidden;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-visual.contain-fit img {
    object-fit: contain;
    padding: 2.5rem;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

@media (max-width: 768px) {
    .tour-visual.contain-fit img {
        padding: 1.25rem;
        max-height: 400px;
    }
}

.tour-box:hover .tour-visual img {
    transform: scale(1.03);
}

/* Top Choice Weddings */
.top-choice-weddings {
    padding: 5rem 5%;
}

.top-choice-weddings h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.weddings-product-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-item {
    text-align: center;
}

.product-img-box {
    position: relative;
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-img-box img {
    mix-blend-mode: multiply;
    width: 100%;
    transform: scale(1.15);
    display: block;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

.product-item h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Performance Banner Redesign */
.custom-perf-banner {
    padding: 6rem 5%;
    background: #000;
    color: #fff;
}

.custom-perf-banner .perf-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.perf-text-block {
    flex: 1;
    text-align: left;
}

.perf-subtitle {
    color: #DEA000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.perf-text-block h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.perf-text-block p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.perf-text-block .btn-solid {
    background: #DEA000;
    color: #000;
}

.perf-text-block .btn-solid:hover {
    background: #fff;
}

.perf-image-block {
    flex: 1;
    position: relative;
}

.perf-image-block img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stretch-indicator {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    color: #000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stretch-indicator svg {
    width: 30px;
    height: 30px;
    color: #DEA000;
    margin-bottom: 0.5rem;
}

.stretch-indicator span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/* Wedding Process */
.wedding-process {
    padding: 5rem 5%;
    background: #fdfdfd;
}

.wedding-process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wedding-header {
    text-align: center;
    margin-bottom: 4rem;
}

.script-accent {
    font-family: 'Playball', cursive;
    font-size: 2.5rem;
    color: #DEA000;
    margin-bottom: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.process-step {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 4px solid #000;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
}

.process-icon svg {
    width: 30px;
    height: 30px;
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Specialties Section */
.specialties-section {
    padding: 5rem 5%;
    background: #fff;
}

.specialties-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.specialty-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.specialty-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-bg {
    transform: scale(1.05);
}

.specialty-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

.specialty-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: #fff;
    width: 100%;
}

.specialty-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.specialty-content p {
    color: #eee;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.btn-outline.light {
    border-color: #fff;
    color: #fff;
}

.btn-outline.light:hover {
    background: #fff;
    color: #000;
}

/* Community Banner */
.community-banner {
    background: #000;
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.community-container {
    max-width: 800px;
    margin: 0 auto;
}

.community-content h2 {
    color: #fff;
    font-size: 2.2rem;
}

.community-content p {
    color: #e0f2fe;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.community-content .btn-solid {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.community-content .btn-solid:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Shop By Color */
.shop-by-color {
    padding: 5rem 5%;
    background: #fdfdfd;
    text-align: center;
}

.shop-by-color h2 {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    margin-bottom: 3rem;
    color: #666;
}

/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 5% 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    filter: invert(1);
    width: 150px;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-contact-list {
    list-style: none;
    margin-top: 1rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact-list i {
    color: #fff;
    margin-top: 4px;
}


.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.85rem;
}

.footer-bottom p {
    color: #fff;
    margin-bottom: 0;
}

.legal-links a {
    margin: 0 0.5rem;
}

.legal-links a:hover {
    color: #fff;
}

/* Legal Pages */
.page-header {
    background: #000;
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

.legal-section {
    padding: 5rem 5%;
    background: #fff;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.legal-container p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container a {
    color: #DEA000;
    font-weight: 500;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1.25rem 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 99;
        gap: 0;
        border-bottom: 3px solid #DEA000;
    }

    .main-nav ul.is-active {
        display: flex !important;
    }

    .main-nav ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: block;
        padding: 0.75rem 0.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }

    .promo-container,
    .team-container,
    .reviews-cards,
    .weddings-product-grid,
    .process-steps,
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .suit-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .flank {
        gap: 4px;
    }

    .features-container,
    .promo-container,
    .team-container,
    .reviews-cards,
    .weddings-product-grid,
    .process-steps,
    .specialties-grid,
    .specialties-half-grid {
        grid-template-columns: 1fr;
    }

    .step-row,
    .step-row.reverse {
        flex-direction: column;
    }

    .tour-box,
    .tour-box.reverse {
        flex-direction: column;
        height: auto;
    }

    .tour-content {
        padding: 2rem;
    }

    .customize-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .reviews-top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .reviews-left {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .reviews-info-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .rating-line {
        margin-top: 0;
    }

    .promo-float-badge {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        margin-top: 1rem;
    }

    .feature-item {
        border-right: none;
        border-bottom: 2px solid #facc15;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

/* =========================================
   NEW DESIGN OVERHAULS 
   ========================================= */

/* Promo Glassmorphism */
.promo.promo-glass {
    position: relative;
    padding: 6rem 5%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.promo.promo-glass .promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.promo.promo-glass .promo-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    /* Override old grid */
}

.promo.promo-glass .glass-panel {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    max-width: 520px;
    margin-left: auto;
}

.promo-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(205, 160, 54, 0.12);
    color: #855b00;
    border: 1px solid rgba(205, 160, 54, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.promo.promo-glass .glass-panel h2 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
    margin-bottom: 1.25rem;
}

.promo-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 1rem 0;
}

.promo-stats .badge-number span {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #cda036, #b48325);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 800;
}

.promo-locations {
    margin-bottom: 1.5rem;
}

.promo-locations p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.promo-locations i {
    color: #cda036;
    font-size: 1.1rem;
}

/* Specialties Asymmetric Grid */
.specialties-grid.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
}

.specialty-card.feature-card {
    height: 100%;
    min-height: 600px;
}

.specialty-sub-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.specialty-card.sub-card {
    height: auto;
}

.specialties-half-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 1.5rem auto 0;
}

.specialties-half-grid .specialty-card.sub-card {
    height: 450px;
}

/* Experience Timeline */
.experience-timeline {
    padding: 6rem 5%;
    background: #ffffff;
    position: relative;
}

.experience-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 4rem;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: #DEA000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 2rem;
    box-shadow: 0 5px 15px rgba(222, 160, 0, 0.4);
    margin-left: 20px;
    /* Align with line */
}

.timeline-step .step-content {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex: 1;
}

.timeline-step .step-content.reverse {
    flex-direction: row-reverse;
}

.timeline-step .step-image,
.timeline-step .step-text {
    flex: 1;
}

.timeline-step .step-image img {
    height: 100%;
    object-fit: cover;
}

.timeline-step .step-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Masonry Lookbook */
.masonry-lookbook {
    padding: 5rem 5%;
    background: #fff;
}

.lookbook-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.lookbook-item {
    border-radius: 8px;
    overflow: hidden;
}

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

.lookbook-item:hover img {
    transform: scale(1.05);
}

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


/* Editorial Team */
.team-section.editorial-team {
    background: #111;
    color: #fff;
}

.editorial-team .team-header h2,
.editorial-team .team-header p {
    color: #fff;
}

.editorial-team .team-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.editorial-team .team-image-wrapper {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
}

.editorial-team .team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editorial-team .team-card:hover .team-image-wrapper {
    filter: grayscale(0%);
}

.editorial-team .team-info {
    position: static;
    transform: none;
    padding: 1.25rem 0;
    text-align: center;
}

.editorial-team .team-info h3 {
    color: #fff;
    text-shadow: none;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.editorial-team .team-info p {
    color: #cda036;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

@media (max-width: 1160px) {

    .specialties-grid.asymmetric-grid,
    .specialties-half-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 900px) {
    .specialty-card.feature-card {
        min-height: 400px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3.5rem;
    }

    .step-marker {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: -30px;
        z-index: 10;
        position: relative;
        border: 4px solid #fff;
    }

    .timeline-step .step-content {
        flex-direction: column !important;
        width: 100%;
    }

    .timeline-step .step-image {
        order: -1;
        width: 100%;
        height: 250px;
        flex: none;
    }

    .timeline-step .step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .timeline-step .step-text {
        padding: 2rem 1.5rem;
        text-align: center;
        flex: none;
    }

    .promo.promo-glass .glass-panel {
        margin-left: 0;
        max-width: 100%;
        padding: 1.5rem;
    }
}

/* Info Highlights Section */
.info-highlights-section {
    padding: 6rem 5%;
    background: #fdfdfd;
}

.info-highlights-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #eee;
}

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

.highlight-card.dark-card {
    background: #000;
    color: #fff;
    border: none;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
}

.dark-card .card-icon {
    color: #fff;
}

.card-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dark-card .card-content h2 {
    color: #fff;
}

.card-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dark-card .card-content p {
    color: #ccc;
}

.card-content .btn-solid {
    margin-top: auto;
    align-self: flex-start;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.card-content .btn-solid:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 1024px) {
    .info-highlights-container {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 2rem;
    }
}

/* Custom Headings */
h2.decorative-heading {
    font-family: 'Playball', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .perf-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }

    .perf-image-block,
    .perf-text-block {
        width: 100% !important;
    }

    .perf-image-block img {
        max-width: 100% !important;
        height: auto !important;
    }

    .perf-text-block p {
        margin-bottom: 0;
    }

    .stretch-indicator {
        left: -10px;
    }
}

/* Extracted Inline Styles from index.html */
@media (max-width: 1160px) {
    .specialties-grid.asymmetric-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .specialty-sub-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .specialties-grid .specialty-card {
        height: 450px !important;
        width: 100% !important;
    }
}

.aw-specialty-content-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.aw-specialty-title {
    margin-top: 0;
}

.aw-specialty-desc {
    margin-bottom: 0;
}

.aw-specialty-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .aw-specialty-content-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.aw-margin-top-large {
    margin-top: 2rem;
}

.bg-promo-indoor {
    background-image: url('../img/alweiss-indoor-3.png');
}

.bg-specialty-wedding {
    background-image: url('../img/al-weiss-weddding.png');
}

.bg-specialty-quince {
    background-image: url('../img/al-weiss-quinceaneras.png');
}

.bg-specialty-prom {
    background-image: url('../img/al-weiss-prom.png');
}

.bg-specialty-grad {
    background-image: url('../img/al-weiss-graduation.png');
}

.bg-specialty-faith {
    background-image: url('../img/al-weiss-faith-church.png');
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 4px;
    transition: background-color 0.3s, opacity 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    background-color: #DEA000;
}

/* Wedding & Landing Page Styles */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
}

.page-hero-content {
    max-width: 900px;
    z-index: 2;
}

.page-hero-subtitle {
    font-family: 'Playball', cursive;
    font-size: 2.4rem;
    color: #DEA000;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    padding-top: 0.25rem;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.page-hero-desc {
    font-size: 1.25rem;
    color: #eaeaea;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Intro Section */
.page-intro-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-intro-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1 / 1;
}

.page-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    aspect-ratio: 1 / 1;
}

.page-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.page-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #DEA000;
}

.page-intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.highlights-badge-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-badge-item i {
    width: 45px;
    height: 45px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    flex-shrink: 0;
}

.highlight-badge-item span {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
}

/* Wedding Styles Showcase */
.styles-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.styles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #666;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.style-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.style-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.style-card:hover .style-card-img img {
    transform: scale(1.06);
}

.style-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.style-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.style-card-text {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.style-card-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #DEA000;
    margin-bottom: 0.5rem;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: #fff;
    border: none;
    outline: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fcfcfc;
}

.faq-icon {
    font-size: 1.1rem;
    color: #000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.5rem 1.8rem;
}

.faq-answer p {
    font-size: 1.02rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* Call to Action Banner */
.cta-banner {
    background-color: #000;
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.cta-banner-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #ccc;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-banner-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background-color: #DEA000;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


.btn-gold:hover {
    background-color: #f5b300;
    transform: translateY(-2px);
}

/* Responsive adjustments for Weddings & Landing pages */
@media (max-width: 1024px) {
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: auto;
        min-height: 380px;
    }

    .page-hero-overlay {
        position: relative;
        min-height: 380px;
        padding: 3.5rem 1.25rem 2.5rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-subtitle {
        font-size: 1.65rem;
        line-height: 1.35;
        padding-top: 0.25rem;
    }

    .page-hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }


    .page-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .styles-grid {
        grid-template-columns: 1fr;
    }

    .highlights-badge-list {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1.2rem 1.4rem;
    }

    .page-header h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-header {
        padding: 3rem 1.25rem;
    }

    .legal-section {
        padding: 3rem 1.25rem;
    }

    h2.decorative-heading {
        font-size: clamp(2rem, 7vw, 3.2rem);
    }

    .cta-banner h2 {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    }

    .editorial-team .team-image-wrapper {
        height: 340px;
    }

    #scrollToTopBtn {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .page-hero-title {
        font-size: clamp(1.75rem, 6.5vw, 2.2rem);
    }

    .page-hero-subtitle {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .page-hero-btns,
    .cta-banner-btns {
        flex-direction: column;
        width: 100%;
    }

    .page-hero-btns .btn-gold,
    .page-hero-btns .btn-outline-gold,
    .cta-banner-btns .btn-gold,
    .cta-banner-btns .btn-solid {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
}

/* Instagram Section */
.instagram-section {
    background-color: #ffffff;
    padding: 4rem 5% 1rem 5%;
    color: #333333;
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-top-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instagram-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.instagram-logo {
    height: 40px;
}

.instagram-info-text strong {
    font-size: 1.1rem;
    display: block;
    color: #111111;
}

.instagram-stats-line {
    font-size: 0.95rem;
    margin-top: 0.2rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-stats-line .handle {
    font-weight: 600;
    color: #111111;
}

.instagram-stats-line .dot {
    color: #999999;
}

@media (max-width: 768px) {
    .instagram-top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }
    .instagram-left {
        flex-direction: column;
        gap: 0.75rem;
    }
}