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

:root {
    --white: #ffffff;
    --black: #000000;
    --primary-font: 'Rubik', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --max-width: 1420px;
    --gutter: 4vw;
    --mobile-gutter: 6vw;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--primary-font);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
}

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

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

h4 {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 25px;
    left: 25px;
    transform: translateY(-100%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: none;
    padding: 0.8vw 2vw;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    width: calc(100% - 50px);
    max-width: calc(100vw - 50px);
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header-inner {
    width: 100%;
    margin: 0;
    padding: 0 calc(var(--gutter) * 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    margin-right: auto;
}

.header-right-items {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.header-actions {
    margin-left: 0;
}

.header-title a {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.05em;
}

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

.header-nav-item a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.header-nav-item a:hover {
    opacity: 0.7;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header .btn {
    border-color: var(--black);
    color: var(--black);
}

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

.header-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    margin-left: auto;
    z-index: 1001;
}

.burger-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
    display: block;
}

/* Form Notification Banner */
.form-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 20px;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.form-notification-success {
    background-color: #4CAF50;
    color: var(--white);
}

.form-notification-error {
    background-color: #f44336;
    color: var(--white);
}

.form-notification-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.form-notification-content span {
    flex: 1;
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.5;
}

.form-notification-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.form-notification-close:hover {
    opacity: 0.7;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Menu Dropdown */
.header-menu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    box-shadow: none;
    z-index: 1000;
    margin: 0;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 0;
    overflow: hidden;
}

.header-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu-nav {
    padding: 0;
    margin: 0;
}

.header-menu-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
}

.header-menu-nav-list li {
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-menu-nav-list li:first-child {
    margin-top: 0;
}

.header-menu-nav-list li:last-child {
    border-bottom: none;
}

.header-menu-nav-list a {
    font-size: 0.75rem;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    padding: 30px 0;
    transition: background-color 0.2s ease;
}


.header-menu-nav-list a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.header-menu-nav .btn {
    margin: 30px 0 0 0;
    width: 100%;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--black);
    background-color: transparent;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 50px;
}

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

.btn--primary {
    border-color: var(--black);
    border-radius: 50px;
}

.btn--large {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Main Content */
.main-content {
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    padding: 0;
}

section:first-child {
    margin-top: 0;
    padding-top: 0;
}

main#page {
    margin: 0;
    padding: 0;
}

/* Full Bleed Section */
.full-bleed-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-section.full-bleed-section {
    margin-top: 0;
    padding-top: 0;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    top: 0;
}

body {
    padding-top: 0;
}

.hero-section .section-background {
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-section .section-background img {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-background-image {
    position: absolute;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    object-position: 25% top !important;
    display: block;
    margin: 0;
    padding: 0;
}


.hero-content {
    text-align: center;
    color: var(--white);
    padding: 4vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 65%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: clamp(1.4rem, 3.5vw, 2.5rem);
    white-space: nowrap;
}

.hero-section .btn {
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--black);
    transition: all 0.3s ease;
    border-radius: 50px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* About Section */
.about-section {
    position: relative;
    min-height: 600px;
    max-height: 1000px;
    height: 1000px;
    padding: 0;
    margin-top: 80px;
    background-image: url('../images/about/generated_457acfe8_20251126_231938.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    scroll-margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* About Homepage Layout - Full Width Background with Text on Right */
.about-section .content-wrapper {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.about-homepage-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0 40px 0 45%;
    position: relative;
}

.about-homepage-content .about-content {
    max-width: 800px;
    width: 100%;
    text-align: left;
    padding: 0 200px 0 0;
    margin-left: auto;
    margin-right: 0;
}

.about-homepage-content .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

.about-homepage-content .about-content p.signature {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 0;
    font-style: normal;
}

.about-homepage-content .about-content .divya-signature {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 1.5rem;
    font-style: normal;
}

.about-content .btn {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .about-section {
        min-height: 500px;
        height: auto;
        padding: 80px 0;
        margin-top: 60px;
    }
    
    .about-homepage-content {
        min-height: 500px;
        padding: 0 30px 0 35%;
        justify-content: flex-end;
    }
    
    .about-homepage-content .about-content {
        max-width: 100%;
        padding: 0 50px 0 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
    }
    
    .about-homepage-content {
        padding: 0 20px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
    }
    
    .about-homepage-content .about-content {
        max-width: 100%;
        padding: 0 20px;
        text-align: left;
    }
    
    .about-homepage-content .about-content p {
        font-size: 1rem;
        text-align: left;
        font-style: normal;
        font-weight: normal;
    }
    
    .about-homepage-content .about-content p.signature {
        text-align: left;
        font-style: normal;
    }
}

@media (max-width: 480px) {
    .about-homepage-content .about-content {
        padding: 0 15px;
    }
    
    .about-homepage-content .about-content p {
        font-size: 0.95rem;
        text-align: left;
        font-style: normal;
        font-weight: normal;
    }
}

/* About Page Layout - Image Left, Text Right */
.about-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.about-page-image {
    position: sticky;
    top: 120px;
}

.about-page-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.about-page-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

.about-content .btn {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .about-page-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-page-image {
        position: static;
    }
    
    .about-content {
        text-align: left;
    }
}

/* My Art Section */
.my-art-section {
    padding: 80px 0 0 0;
    background-color: var(--white);
    scroll-margin-top: 80px;
}

.my-art-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.my-art-item {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.my-art-item:hover {
    transform: scale(1.02);
}

.my-art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    vertical-align: top;
    border-radius: 0;
}

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

/* Simple 4x3 grid - no special mosaic positioning needed */

@media (max-width: 1024px) {
    .my-art-mosaic {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .my-art-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .header {
        position: fixed !important;
        top: 10px !important;
        left: 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        padding: 0 20px !important;
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .header:not(.visible) {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
    }
    
    .header.visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .header.visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .header-inner {
        padding: 10px 3px !important;
        min-height: auto !important;
        height: 100% !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        line-height: 1 !important;
        display: flex !important;
        position: relative;
    }
    
    .header-burger {
        display: flex !important;
        margin-left: auto !important;
        order: 3;
    }
    
    .header-menu {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        top: calc(100% + 20px) !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: hidden;
    }
    
    .header-menu-nav {
        padding: 0 !important;
    }
    
    .header-title {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        height: auto !important;
    }
    
    .header-title a {
        font-size: 1.1rem !important;
        line-height: 1 !important;
        display: inline-block !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        vertical-align: middle !important;
    }
    
    .header-right-items {
        gap: 0.5rem !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        line-height: 1 !important;
        align-items: center !important;
    }
    
    .header-nav-item {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .header-nav-item a {
        font-size: 0.6rem !important;
        line-height: 1 !important;
        padding: 0 !important;
    }
    
    .header-actions {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .header-actions .btn {
        padding: 3px 6px !important;
        font-size: 0.6rem !important;
        line-height: 1 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .header-burger {
        padding: 2px !important;
        margin: 0 !important;
        height: auto !important;
    }
    
    .burger-box {
        gap: 2px !important;
        height: auto !important;
    }
    
    .burger-line {
        height: 1px !important;
        margin: 0 !important;
    }
    
    .hero-text {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .hero-text h2 {
        white-space: normal;
        font-size: clamp(1.2rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    .my-art-section {
        padding: 40px 0 0 0;
    }
    
    .contact-layout {
        padding: 0 20px;
    }
    
    .instagram-section {
        padding: 40px 0 0 0;
    }
    
    .about-section {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .my-art-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .header {
        position: fixed !important;
        top: 10px !important;
        left: 8px !important;
        width: calc(100% - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        padding: 0 15px !important;
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .header:not(.visible) {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
    }
    
    .header.visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .header-inner {
        padding: 10px 2px !important;
        min-height: auto !important;
        height: 100% !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        line-height: 1 !important;
        display: flex !important;
        position: relative;
    }
    
    .header-burger {
        display: flex !important;
        margin-left: auto !important;
        order: 3;
    }
    
    .header-menu {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        top: calc(100% + 20px) !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: hidden;
    }
    
    .header-menu-nav {
        padding: 0 !important;
    }
    
    .header-title {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        height: auto !important;
    }
    
    .header-title a {
        font-size: 1rem !important;
        line-height: 1 !important;
        display: inline-block !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        vertical-align: middle !important;
    }
    
    .header-nav-list {
        gap: 0.4rem !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .header-nav-item {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .header-nav-item a {
        font-size: 0.55rem !important;
        line-height: 1 !important;
        padding: 0 !important;
    }
    
    .header-actions {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .header-actions .btn {
        padding: 2px 6px !important;
        font-size: 0.55rem !important;
        line-height: 1 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .header-burger {
        padding: 2px !important;
        margin: 0 !important;
        height: auto !important;
    }
    
    .burger-box {
        gap: 2px !important;
        height: auto !important;
    }
    
    .burger-line {
        height: 1px !important;
        margin: 0 !important;
    }
    
    .hero-text {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: clamp(1rem, 6vw, 1.5rem);
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        min-height: 44px; /* Touch target */
    }
    
    .my-art-section {
        padding: 30px 0 0 0;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .contact-layout {
        padding: 0 15px;
        gap: 30px;
    }
    
    .about-homepage-content {
        padding: 0 15px !important;
    }
    
    .header-menu {
        padding-top: 80px;
    }
    
    .header-menu-nav-list a {
        font-size: 0.75rem;
        padding: 10px 0;
        display: block;
    }
    
    .name-inputs {
        grid-template-columns: 1fr;
    }
    
    /* Improve touch targets */
    .btn, .my-art-item, .instagram-item {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Shop Section */
.shop-section {
    padding: 100px 0;
    background-color: var(--white);
    scroll-margin-top: 80px;
}

.shop-content {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-section,
    .shop-section,
    .learn-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .shop-product {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .learn-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.shop-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f8f8f8;
}

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

.shop-product-info h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
}

.shop-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.shop-product-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 30px;
}

/* Learn Section */
.learn-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    scroll-margin-top: 80px;
}

.learn-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.learn-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.learn-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.learn-feature {
    padding: 30px;
    background-color: var(--white);
}

.learn-feature h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 15px;
}

.learn-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
}

/* Work Section (legacy - keeping for work.html page) */
.work-section {
    padding: 80px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: minmax(6vw, 1fr) repeat(24, minmax(0, 1fr)) minmax(6vw, 1fr);
    grid-template-rows: repeat(27, minmax(calc(100vw * 0.0215), auto));
    gap: 11px;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 600px;
}

@media (min-width: 768px) {
    .work-grid {
        grid-template-columns: minmax(4vw, 1fr) repeat(24, minmax(0, 1fr)) minmax(4vw, 1fr);
        grid-template-rows: repeat(27, minmax(calc(min(1420px, calc(100vw - 8vw)) * 0.0215), auto));
    }
}

.work-image-left {
    grid-column: 3 / 15;
    grid-row: 1 / 20;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.work-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-image-right {
    grid-column: 15 / 27;
    grid-row: 1 / 27;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.work-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-description {
    grid-column: 3 / 12;
    grid-row: 23 / 25;
    z-index: 4;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
    font-size: 19.3444px;
}

.work-heading {
    grid-column: 3 / 9;
    grid-row: 20 / 23;
    z-index: 3;
    margin: 0;
    font-size: 32.722px;
    text-align: right;
}

.work-link {
    grid-column: 3 / 11;
    grid-row: 25 / 27;
    z-index: 5;
    color: var(--black);
    text-decoration: none;
    font-family: monospace;
    font-size: 14.8852px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: start;
}

.work-link:hover {
    text-decoration: underline;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(6vw, 1fr) repeat(24, minmax(0, 1fr)) minmax(6vw, 1fr);
    grid-template-rows: repeat(30, minmax(calc(100vw * 0.0215), auto));
    gap: 11px;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 600px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: minmax(4vw, 1fr) repeat(24, minmax(0, 1fr)) minmax(4vw, 1fr);
        grid-template-rows: repeat(30, minmax(calc(min(1420px, calc(100vw - 8vw)) * 0.0215), auto));
    }
}

.services-image-left {
    grid-column: 3 / 19;
    grid-row: 1 / 23;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.services-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-image-right {
    grid-column: 19 / 27;
    grid-row: 1 / 16;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.services-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-description {
    grid-column: 3 / 12;
    grid-row: 26 / 29;
    z-index: 4;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
}

.services-heading {
    grid-column: 3 / 9;
    grid-row: 23 / 26;
    z-index: 3;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: right;
}

.services-link {
    grid-column: 3 / 11;
    grid-row: 29 / 31;
    z-index: 5;
    color: var(--black);
    text-decoration: none;
    font-family: monospace;
    font-size: clamp(0.875rem, 1vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: start;
}

.services-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.footer-title {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    max-width: 100%;
    width: 100%;
    display: block;
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-title:hover {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--black);
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-credit {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.footer-credit a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 6vw;
    }
    
    .header {
        position: fixed !important;
    }
    
    .header:not(.visible) {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
    }
    
    .header.visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .header-burger {
        display: flex !important;
        margin-left: auto !important;
        order: 3;
    }

    .header-right-items {
        gap: 0;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }
    
    .header-menu {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        top: calc(100% + 20px) !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 30px !important;
        overflow: hidden;
        background-color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .header-menu-nav {
        padding: 0 !important;
    }
    
    .header-menu.active {
        display: block !important;
    }

    .work-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        min-height: auto;
    }

    .work-image-left,
    .work-image-right,
    .work-description,
    .work-heading,
    .work-link {
        grid-column: 1 / -1;
        grid-row: auto;
        z-index: auto;
    }

    .work-image-left {
        grid-row: 1;
    }

    .work-image-right {
        grid-row: 2;
    }

    .work-description {
        grid-row: 3;
        text-align: center;
    }

    .work-heading {
        grid-row: 4;
        text-align: center;
    }

    .work-link {
        grid-row: 5;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        min-height: auto;
    }

    .services-image-left,
    .services-image-right,
    .services-description,
    .services-heading,
    .services-link {
        grid-column: 1 / -1;
        grid-row: auto;
        z-index: auto;
    }

    .services-image-left {
        grid-row: 1;
    }

    .services-image-right {
        grid-row: 2;
    }

    .services-description {
        grid-row: 4;
        text-align: center;
    }

    .services-heading {
        grid-row: 3;
        text-align: center;
    }

    .services-link {
        grid-row: 5;
        text-align: center;
    }

    .hero-content {
        padding: 8vw var(--gutter);
    }

    .main-content {
        margin-top: 70px;
    }

    .footer-links {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .form-notification {
        padding: 15px;
    }
    
    .form-notification-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .form-notification-content span {
        font-size: 0.9rem;
    }
    
    .form-notification-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .header-title a {
        font-size: 1.4rem;
    }

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

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

/* About Page Styles */
.about-section {
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: left;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
    font-style: normal;
    text-align: left;
}

.services-list-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-list-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 3rem;
    font-weight: 400;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-item {
    text-align: left;
}

.service-item h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

.service-item p {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    line-height: 1.6;
}

/* Gallery/Work Page Styles */
.gallery-section {
    padding: 100px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

/* Form Styles */
.form-section {
    padding: 100px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-family: var(--primary-font);
    font-size: 1rem;
    background-color: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    margin-right: 0.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group input[type="checkbox"]:checked,
.form-group input[type="radio"]:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.form-group input[type="checkbox"]:checked::after,
.form-group input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    text-transform: none;
    font-weight: normal;
}

.form-submit {
    margin-top: 2rem;
}

.name-inputs input {
    width: 100%;
}

/* Bridal Extra Options */
.bridal-extra-options {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shop Page Styles */
.shop-section {
    padding: 100px 0;
}

.shop-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0;
    margin-top: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.product-item h3 {
    margin-bottom: 1rem;
}

.product-item p {
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.7);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-item p {
    display: none;
    color: rgba(0, 0, 0, 0.7);
}

.faq-item.active p {
    display: block;
}

/* Contact Section */
/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-heading {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.faq-intro {
    font-family: var(--body-font);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-category {
    margin-bottom: 50px;
}

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

.faq-category-title {
    font-family: var(--heading-font);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--body-font);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    color: var(--black);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--black);
}

.faq-question span {
    flex: 1;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--black);
}

.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;
    padding: 0 0;
}

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

.faq-answer p {
    font-family: var(--body-font);
    font-size: clamp(0.9375rem, 1.25vw, 1rem);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    font-family: var(--body-font);
    font-size: clamp(0.9375rem, 1.25vw, 1rem);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 12px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer li strong {
    color: var(--black);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-heading {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 0;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-question {
        padding: 18px 0;
    }
}

.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-section * {
    text-decoration: none !important;
}

.contact-section a {
    text-decoration: none !important;
}

.contact-left p a {
    color: #000000 !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
    font-weight: normal;
}

.contact-left p a:visited {
    color: #000000 !important;
}

.contact-left p a:hover {
    color: #000000 !important;
    opacity: 0.7;
}

/* Contact Layout - Image/Text Left, Form Right */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-left h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-left p:last-of-type {
    margin-bottom: 40px;
}

.contact-image {
    margin-top: 40px;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.contact-right {
    max-width: 100%;
}

.date-help-text {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Instagram Grid Section */
.instagram-section {
    padding: 80px 0 0 0;
    background-color: var(--white);
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.instagram-mobile-header {
    display: none;
}

@media (max-width: 480px) {
    .instagram-section {
        padding-top: 20px;
    }

    .instagram-mobile-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        max-width: 100%;
        margin: 0;
    }

    .instagram-logo-mobile {
        width: 32px;
        height: 32px;
        fill: var(--black);
    }
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    width: 100vw;
    padding: 0;
    max-width: 100vw;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #f5f5f5;
    min-height: 100px;
}

.instagram-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
    z-index: 10;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1400px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
        gap: 8px;
    }

    .instagram-item:nth-child(n+5) {
        display: none;
    }
    
    /* Contact Form Mobile Improvements */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-left h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 15px;
    }
    
    .contact-left p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .contact-image {
        margin-top: 30px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Touch target */
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .checkbox-group {
        margin-bottom: 0.75rem;
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .form-group input[type="checkbox"],
    .form-group input[type="radio"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 0.75rem;
    }
    
    .form-submit .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* FAQ Mobile Improvements */
    .faq-heading {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 20px;
    }
    
    .faq-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 0;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-answer p {
        margin-bottom: 1rem;
    }
    
    .faq-answer ul {
        padding-left: 20px;
    }
    
    /* Footer Mobile Improvements */
    .footer {
        padding: 40px 20px 30px;
    }
    
    .footer-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0;
    }
    
    /* About Section Mobile */
    .about-homepage-content .about-content {
        padding: 0 20px !important;
    }
    
    .about-homepage-content .about-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-text {
        padding: 0 20px;
    }
    
    /* Content Wrapper Mobile */
    .content-wrapper {
        padding: 0 20px;
    }
    
    .faq-section .content-wrapper {
        padding: 0 15px;
    }
    
    /* Form spacing mobile */
    .bridal-extra-options {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    /* Date help text mobile */
    .date-help-text {
        font-size: 0.8rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    padding: 0;
    opacity: 0.8;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    transition: transform 0.3s ease;
}

.lightbox-nav:hover svg {
    transform: scale(1.1);
}

.lightbox-prev:hover svg {
    transform: translateX(-2px) scale(1.1);
}

.lightbox-next:hover svg {
    transform: translateX(2px) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 30px;
        font-size: 30px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        opacity: 0.9;
    }
    
    .lightbox-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    /* Contact Form Tablet Improvements */
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-left h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Touch target */
    }
    
    .form-submit .btn {
        min-height: 48px;
        padding: 12px 28px;
    }
    
    /* FAQ Tablet Improvements */
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    /* Footer Tablet */
    .footer {
        padding: 50px 20px 35px;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

