:root {
    /* Premium Color Palette - Based on MESHAIL Red & Black */
    --primary-color: #e30613;
    --primary-dark: #b3050f;
    --primary-light: #fff5f5;
    --secondary-color: #1a1a1a;
    --accent-gold: #D4AF37;
    --accent-gray: #f4f4f4;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #e0e0e0;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --black: #000000;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e30613 0%, #ff4d4d 100%);
    --gradient-secondary: linear-gradient(135deg, #e30613 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-secondary: 'Cormorant Garamond', serif;
    --font-primary: 'Manrope', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

.align-start {
    align-self: flex-start;
}

.align-center {
    align-self: center;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.top-bar-item a:hover {
    opacity: 0.8;
}

.top-bar-item i {
    font-size: 0.9rem;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 37px;
    /* Matches top-bar height */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(227, 6, 19, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.nav-link.active::before {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(227, 6, 19, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(227, 6, 19, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(227, 6, 19, 0.1);
    border-color: rgba(227, 6, 19, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* HERO SLIDER SECTION */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-family: var(--font-secondary);
}

.hero-slide.active .hero-slide-title {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.4s ease;
    opacity: 0;
}

.hero-slide.active .hero-slide-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide-btn:hover {
    background: var(--white);
    color: var(--black);
}

.hero-slide-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.hero-slide-btn:hover span.arrow {
    transform: translateX(5px);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* SECTIONS */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-alt {
    background-color: var(--off-white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.section-subtitle i {
    font-size: 1rem;
    color: var(--primary-color);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
}

.about-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
}

.about-btn .arrow {
    transition: transform 0.4s ease;
}

.about-btn:hover .arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* WHY CHOOSE US */
.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: transparent;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-color: transparent;
}

.why-icon {
    width: 85px;
    height: 85px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.2rem;
    font-family: var(--font-secondary);
}

.why-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* STATS COUNTER */
.counter-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.counter-item {
    position: relative;
    padding: 1rem;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    line-height: 1;
}

.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }

    .counter-item:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .counter-item::after {
        display: none;
    }

    .counter-section {
        padding: 60px 0;
    }
}

/* GLOBAL BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 30, 29, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 30, 29, 0.4);
    color: var(--white);
}

/* SERVICES TABS */

.tabs-container {
    max-width: 1100px;
    margin: 3.5rem auto 0;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tab-btn i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.tab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tab-btn.active i {
    color: var(--white);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    padding-bottom: 2rem;
}

.tab-pane-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.tab-pane-info {
    animation: slideInLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.tab-pane-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.tab-pane-desc {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 90%;
}

.service-list-item {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-list-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    background: rgba(212, 30, 29, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-list-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.tab-pane-image {
    position: relative;
    animation: slideInRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.tab-pane-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
}

.tab-pane-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@media (max-width: 1200px) {
    .tab-pane-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .tab-pane-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tab-pane-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tab-pane-desc {
        max-width: 100%;
    }

    .service-list-item {
        justify-content: flex-start;
        text-align: left;
    }

    .tab-pane-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* BRIDAL SECTION - CREATIVE REDESIGN */
.bridal-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bridal-content {
    background: var(--white);
    padding: 3rem;
    z-index: 2;
    box-shadow: 40px 40px 100px rgba(0, 0, 0, 0.08);
    margin-right: -120px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bridal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bridal-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.bridal-list li:hover {
    transform: translateX(10px);
}

.bridal-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    background: rgba(212, 30, 29, 0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bridal-image {
    position: relative;
}

.bridal-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    opacity: 0.3;
}

.bridal-image img {
    border-radius: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
    box-shadow: 50px 50px 100px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .bridal-content {
        padding: 4rem 3rem;
        margin-right: -50px;
    }
}

@media (max-width: 992px) {
    .bridal-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bridal-content {
        margin-right: 0;
        margin-top: -80px;
        order: 2;
        padding: 4rem 2rem;
        text-align: center;
        align-items: center;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        border-left: none;
        border-top: 5px solid var(--primary-color);
    }

    .bridal-image {
        order: 1;
    }

    .bridal-image img {
        height: 500px;
    }

    .bridal-image::after {
        display: none;
    }

    .bridal-list {
        align-items: flex-start;
        margin: 1.5rem auto;
    }
}

/* SERVICES SHOWCASE */
.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    transition: transform 0.8s ease;
    z-index: 1;
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-content {
    transform: translateY(0);
}

.showcase-content h3 {
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-secondary);
    letter-spacing: -0.5px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .showcase-content {
        transform: translateY(0);
    }
}

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

    .showcase-card {
        height: 360px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .showcase-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */

/* .footer-main .container {
    max-width: 1200px;
} */

.footer-new {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr;
    gap: 4rem;
}

.footer-company p {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

.footer-social h4 {
    color: var(--white);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.2fr;
    gap: 2rem;
}

.footer-links-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

.footer-links-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #ccc;
}

.contact-icon-svg {
    color: var(--primary-color);
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-credits p {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

/* UTILS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* INFINITE GALLERY MARQUEE */

.gallery-marquee-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 3rem;
}

.marquee-row {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    padding: 15px 0;
}

.marquee-group {
    display: flex;
    gap: 30px;
    animation: marquee-scroll 80s linear infinite;
}

.marquee-group img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.marquee-group img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

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

    to {
        transform: translateX(calc(-100% - 30px));
    }
}

/* Pause animation on hover */
.marquee-row:hover .marquee-group {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-group img {
        width: 250px;
        height: 330px;
    }

    .marquee-container {
        gap: 20px;
    }

    .marquee-group {
        gap: 20px;
    }
}

/* TESTIMONIALS SECTION - PREMIUM STYLE */
.testimonials-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--secondary-color);
    opacity: 0.1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 20px;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-primary);
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.author-position {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--secondary-color);
    width: 16px;
    height: 16px;
}

/* CTA SECTION - PREMIUM STYLE */

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, rgba(227, 6, 19, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
    min-width: 220px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

.cta-btn.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.cta-btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
        gap: 40px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-action {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 30px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.scroll-top i {
    color: white;
}

/* --- CONTACT PAGE CSS --- */
.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/banner/banner4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(17, 17, 17, 0.80) 50%, rgba(10, 10, 10, 0.9) 100%),
        radial-gradient(circle at 20% 30%, rgba(227, 6, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(227, 6, 19, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-secondary);
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(227, 6, 19, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(227, 6, 19, 0.1);
    transform: translateY(-2px);
    border-color: rgba(227, 6, 19, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-social-section {
    margin: 4rem 0;
}

.contact-social-wrapper {
    background: var(--off-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: var(--shadow-sm);
}

.contact-social-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-social-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-form-header h3 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--black);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

.map-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-item {
    background: var(--white);
    padding: 20px;
}

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


.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
    background: var(--black);
    color: var(--white);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

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

/* RESPONSIVENESS */
.nav-mobile-contact {
    display: none;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-main-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0 !important;
    }

    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-slide-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 50px;
        object-fit: contain;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--dark-gray);
        font-size: 1rem;
        font-weight: 500;
    }

    .mobile-contact-item i {
        color: var(--primary-color);
        font-size: 1.1rem;
        width: 25px;
        text-align: center;
    }

    .mobile-contact-item a {
        color: var(--dark-gray);
        text-decoration: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .why-card {
        padding: 2.5rem 1.5rem;
    }

    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-page-intro .about-image-wrapper {
    height: 700px;
}

.about-vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.vm-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 1.75rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.founder-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

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

.founder-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.6;
}

.founder-socials {
    margin-top: 2rem;
}

.founder-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.founder-socials a:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

@media (max-width: 768px) {

    .about-grid,
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-vision-mission {
        grid-template-columns: 1fr;
    }

    .about-page-intro .about-image-wrapper {
        height: 480px;
    }
}

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

/* Trust Points Strip (Below About Image) */

.trust-strip-section {
    padding-top: 0;
}

.trust-strip-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

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

.trust-icon {
    font-size: 2.5rem;
    color: var(--black);
    opacity: 0.8;
}

.trust-text h4 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    font-family: var(--font-primary);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 400;
}

.trust-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    line-height: 1;
}

@media (max-width: 1024px) {
    .trust-strip-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
        border: none;
        padding: 2rem 1rem;
    }

    .trust-item {
        border-right: none;
        min-width: 240px;
        justify-content: flex-start;
        padding-left: 10%;
    }
}

@media (max-width: 768px) {
    .trust-item {
        min-width: 100%;
        padding-left: 5%;
    }
}

/* --- SERVICES PAGE STYLES --- */
.service-category-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-category-row:last-child {
    margin-bottom: 0;
}

.service-category-row.row-reverse .service-category-content {
    order: 2;
}

.service-category-row.row-reverse .service-category-visual {
    order: 1;
}

.service-list-items {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.service-list-items li {
    font-size: 1rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.service-list-items li i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.mt-2 {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .service-category-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-category-visual {
        order: 1;
    }

    .service-category-content {
        order: 2;
    }
}

/* --- PRODUCT SLIDER STYLES --- */
.product-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.product-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.product-slide {
    min-width: 100%;
    position: relative;
}

.product-slide img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
}

.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.product-slider-nav .prod-btn {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-slider-nav .prod-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.prod-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.prod-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .product-slide img {
        height: 400px;
    }

    .product-slider-nav .prod-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* --- PRODUCT CHIPS --- */
.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.product-chip {
    padding: 12px 16px;
    background-color: rgba(193, 155, 118, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(193, 155, 118, 0.3);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .product-chips {
        justify-content: flex-start;
    }
}

/* --- BRIDAL FEATURES SECTION (Light Redesign) --- */
.bridal-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(193, 155, 118, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.b-feature-item {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid rgba(193, 155, 118, 0.2);
    transition: all 0.4s ease;
    background: var(--white);
    position: relative;
}

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

.b-feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.b-feature-item:hover {
    background: #fafafa;
    transform: translateY(-5px);
}

.b-feature-item:hover::after {
    width: 100%;
}

.b-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(193, 155, 118, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.b-feature-item:hover .b-feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.b-feature-item h3 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.b-feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

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

    .b-feature-item:nth-child(2) {
        border-right: none;
    }

    .b-feature-item:nth-child(1),
    .b-feature-item:nth-child(2) {
        border-bottom: 1px solid rgba(193, 155, 118, 0.2);
    }
}

@media (max-width: 600px) {
    .bridal-features {
        grid-template-columns: 1fr;
        border: none;
        box-shadow: none;
        gap: 20px;
    }

    .b-feature-item {
        border: 1px solid rgba(193, 155, 118, 0.2);
        border-radius: 15px;
        padding: 40px 20px;
        box-shadow: var(--shadow-sm);
    }
}

/* ===================================
   GALLERY / PORTFOLIO SECTION
   =================================== */
.gallery-filters {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: var(--white);
    border: 1px solid rgba(193, 155, 118, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(193, 155, 118, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/5;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

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

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

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: var(--white);
    font-family: var(--font-accent);
}

.gallery-category {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
    transform: translateY(0);
}

/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10002;
}

.lightbox-counter {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.lightbox-close {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    padding-top: 60px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

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

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

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    padding: 20px;
    z-index: 10001;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-thumbnails-container {
    height: 100px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #444 #111;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: #111;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.lightbox-thumb {
    height: 60px;
    width: 80px;
    min-width: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 4px;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.lightbox-thumb:hover {
    opacity: 1;
}

/* --- ACADEMY PAGE STYLES --- */
.academy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/Gallery/Salon Interior/CMK_7084.JPG') no-repeat center center/cover;
}

.academy-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.course-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.course-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-features {
    list-style: none;
    padding: 0;
}

.course-features li {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.course-features li i {
    color: var(--primary-color);
}

/* --- CREATIVE ACADEMY METHOD SECTION --- */

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.method-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border: 1px solid transparent;
}

.method-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(193, 155, 118, 0.12);
    border-color: rgba(193, 155, 118, 0.2);
}

.method-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(193, 155, 118, 0.05);
    line-height: 1;
    font-family: var(--font-primary);
    transition: all 0.4s ease;
}

.method-card:hover .method-num {
    color: rgba(193, 155, 118, 0.1);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--white) 0%, #f7f2ed 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    box-shadow: 5px 5px 15px rgba(193, 155, 118, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(193, 155, 118, 0.3);
}

.method-card:hover .method-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.method-info h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.method-info p {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .method-grid {
        gap: 25px;
    }

    .method-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.offer-image {
    position: relative;
    height: 300px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.offer-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(193, 155, 118, 0.3);
}

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

.offer-content h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.offer-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.offer-features span {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-features span i {
    color: var(--primary-color);
}

.offer-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* --- ULTRA-PREMIUM MEMBERSHIP REDESIGN --- */
.membership-premium-container {
    padding: 100px 0;
    background: radial-gradient(circle at center, #fff 0%, #fdfbf9 100%);
    position: relative;
}

.elite-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.elite-card {
    background: var(--white);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    min-height: 550px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(193, 155, 118, 0.15);
    border: 1px solid rgba(193, 155, 118, 0.2);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.elite-card:hover {
    transform: translateY(-10px);
}

.elite-card-visual {
    background: url('assets/Gallery/Salon Interior/CMK_7084.JPG') no-repeat center center/cover;
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.elite-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.elite-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.elite-card-content {
    padding: 80px 60px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.elite-header h3 {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.elite-header p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
}

.elite-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 50px;
}

.elite-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.elite-feature i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(193, 155, 118, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.elite-cta-wrap {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.elite-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(193, 155, 118, 0.4);
    transition: all 0.3s ease;
}

.elite-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(193, 155, 118, 0.6);
}

@media (max-width: 992px) {
    .elite-card {
        grid-template-columns: 1fr;
    }

    .elite-card-visual {
        height: 300px;
    }

    .elite-card-content {
        padding: 50px 40px;
    }
}

@media (max-width: 600px) {
    .elite-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .elite-header h3 {
        font-size: 2.2rem;
    }

    .elite-card-visual {
        padding: 40px;
    }
}