/* Wedding Page Specific Styles */

/* Prevent horizontal overflow on mobile */
.wedding-page {
    overflow-x: hidden;
}

.wedding-page body {
    overflow-x: hidden;
    max-width: 100vw;
}

.wedding-page * {
    max-width: 100%;
}

/* First Viewport Container - Same as dance classes */
.wedding-page .first-viewport {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.wedding-page .first-viewport .info-banner {
    flex-shrink: 0;
}

.wedding-page .first-viewport .class-hero {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Hero Section - Inheriting from dance-class.css styles */
.wedding-page .class-hero {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.wedding-page .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.wedding-page .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 200;
    color: #000000;
    text-align: center;
    letter-spacing: 0.02em;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
    animation: slideDown 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(-100px);
}

.wedding-page .hero-title .hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 20px;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* Hero Links at Bottom */
.wedding-page .hero-links {
    position: absolute;
    bottom: 60px;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.wedding-page .hero-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #d4a574; /* Wedding gold color */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.wedding-page .hero-link:hover {
    color: #c19660;
    transform: translateX(5px);
}

.wedding-page .hero-link .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.wedding-page .hero-link:hover .arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wedding-page .first-viewport {
        height: 100vh;
        max-height: 100vh;
    }

    .wedding-page .hero-links {
        bottom: 40px;
        gap: 30px;
    }

    .wedding-page .hero-link {
        font-size: 1rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb-container a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
    color: #d4a574;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb-current {
    color: #2c2c2c;
    font-weight: 400;
}

@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 20px;
        font-size: 0.8rem;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }
}

/* Main Content Container */
.wedding-content {
    background: #ffffff;
}

/* ========================================
   WHY CHOOSE SECTION WITH IMAGE
   ======================================== */

.why-choose-wedding {
    background: #fdfbf5; /* Cream background as specified */
    padding: 80px 0;
    overflow-x: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 31.5% 68.5%;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    position: relative;
}

/* Image Side */
.image-side {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.why-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 600px;
}

/* Content Side */
.content-side {
    padding: 40px 60px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Value Items */
.value-item {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    padding: 30px 0;
    margin: 0;
    position: relative;
}

.value-item:first-child {
    padding-top: 0;
}

.value-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    position: relative;
}

.value-content {
    flex: 1;
}

.value-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.value-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Separator Line */
.value-separator {
    width: calc(100% - 83px);
    height: 1px;
    background: #e0e0e0;
    margin: 0 0 0 83px; /* Offset to align with text content */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image {
        min-height: 400px;
    }

    .content-side {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-wedding {
        padding: 60px 0;
    }

    .why-choose-container {
        padding: 0 20px;
    }

    .content-side {
        padding: 20px 10px;
    }

    .value-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .value-number {
        width: 45px;
        height: 45px;
        font-size: 13px;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .value-text {
        font-size: 14px;
    }

    .why-image {
        min-height: 300px;
    }
}

/* Introduction Section */
.wedding-intro {
    padding: 80px 20px;
    background: white;
}

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

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 400;
}

.intro-text .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.intro-text p {
    color: #777;
    line-height: 1.7;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Wedding Services/Packages Section */
.wedding-services {
    padding: 80px 20px;
    background: #fafafa;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-card.featured {
    border: 2px solid #d4a574;
    transform: scale(1.05);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #d4a574;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.package-header {
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.5rem;
    color: #d4a574;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
}

.package-duration {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
    font-family: 'Josefin Sans', sans-serif;
}

.package-content {
    padding: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #d4a574;
    font-size: 14px;
}

.package-btn {
    display: block;
    text-align: center;
    background: #d4a574;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    font-weight: 400;
}

.package-btn:hover {
    background: #c19660;
}

/* Custom Package Section */
.custom-package {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.custom-package h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.custom-package p {
    color: #666;
    margin-bottom: 25px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

.custom-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #d4a574;
    color: white;
}

/* Journey Section */
.journey-section {
    padding: 80px 20px;
    background: #fdfbf5;
}

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

.journey-container .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 400;
}

.journey-subtitle {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.journey-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #d4a574;
    transition: all 0.3s ease;
}

.journey-step:hover .step-number {
    background: #d4a574;
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 400;
}

.step-description {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.journey-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #d4a574, #e0c4a0);
    flex-shrink: 0;
}

/* Responsive Journey */
@media (max-width: 1200px) {
    .journey-steps {
        gap: 10px;
    }

    .journey-step {
        padding: 0 10px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .journey-connector {
        width: 40px;
    }
}

@media (max-width: 1024px) {
    .journey-steps {
        flex-wrap: wrap;
        gap: 40px;
    }

    .journey-step {
        flex: 0 0 calc(50% - 20px);
        padding: 0 20px;
    }

    .journey-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 60px 20px;
    }

    .journey-steps {
        flex-direction: column;
        gap: 0;
    }

    .journey-step {
        flex: 1 1 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .journey-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .journey-connector {
        display: flex;
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, #d4a574, #e0c4a0);
        margin: 0 auto 30px;
        position: relative;
    }

    .journey-connector::after {
        content: '↓';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        color: #d4a574;
        font-size: 1.5rem;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .journey-container .section-title {
        font-size: 1.8rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Dance Styles Section */
.dance-styles {
    padding: 80px 20px;
    background: white;
}

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

.styles-container .section-title {
    text-align: left;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}

.styles-container .title-separator {
    width: 100%;
    height: 1px;
    background: #000;
    margin-bottom: 60px;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 0;
}

.style-card {
    text-align: left;
    padding: 0 40px 60px 40px;
    background: transparent;
    border-radius: 0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.style-card:nth-child(3n) {
    border-right: none;
}

.style-card:nth-last-child(-n+3) {
    border-bottom: none;
    padding-bottom: 0;
}

/* Animated border elements */
.style-card::before,
.style-card::after {
    content: '';
    position: absolute;
    background: #d4a574;
    transition: all 0.4s ease;
}

/* Bottom border animation (left to right) */
.style-card::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.4s ease;
}

/* Right border animation (bottom to top) */
.style-card::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 0;
    transition: height 0.4s ease 0s;
}

/* Hover effects */
.style-card:hover {
    transform: translateY(-3px);
}

.style-card:hover::before {
    width: 100%;
}

.style-card:hover::after {
    height: 100%;
    transition-delay: 0.4s;
}

.style-category {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.style-card h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.style-card p {
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Section - Bento Style */
.why-choose {
    padding: 80px 20px;
    background: #fafafa;
}

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

.why-container .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.bento-item {
    background: #fdfbf5;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

/* Large card - spans 2 columns */
.bento-item.bento-large {
    grid-column: span 2;
}

/* Tall card - spans 2 rows */
.bento-item.bento-tall {
    grid-row: span 2;
}

.bento-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 400;
}

.bento-item p {
    color: #666;
    line-height: 1.7;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: white;
}

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

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

.testimonial-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    color: #d4a574;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.testimonial-author {
    font-family: 'Josefin Sans', sans-serif;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 14px;
}

/* Areas We Cover Section */
.areas-covered {
    padding: 80px 20px;
    background: #fafafa;
}

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

.areas-container .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 400;
}

.areas-subtitle {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Bento Grid for Areas */
.areas-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
    margin-bottom: 40px;
}

.area-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fdfbf5;
    border-color: #d4a574;
}

/* Large card - spans 2 columns */
.area-card.area-large {
    grid-column: span 2;
}

/* Tall card - spans 2 rows */
.area-card.area-tall {
    grid-row: span 2;
}

/* Wide card - spans 2 columns */
.area-card.area-wide {
    grid-column: span 2;
}

.area-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 400;
}

.area-card p {
    color: #666;
    line-height: 1.6;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
}

.areas-note {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.areas-note p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.areas-note a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.areas-note a:hover {
    color: #c19660;
    text-decoration: underline;
}

/* Responsive Areas Grid */
@media (max-width: 1024px) {
    .areas-bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 150px;
    }

    .area-card.area-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .areas-covered {
        padding: 60px 20px;
    }

    .areas-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 15px;
    }

    .area-card {
        padding: 20px;
    }

    .area-card h3 {
        font-size: 1.1rem;
    }

    .area-card p {
        font-size: 0.85rem;
    }

    .area-card.area-tall {
        grid-row: span 1;
    }

    .areas-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .areas-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 12px;
    }

    .area-card.area-large,
    .area-card.area-wide,
    .area-card.area-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .area-card {
        padding: 20px;
    }

    .areas-note {
        padding: 20px;
    }

    .areas-note p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #FFFBF7;
}

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

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 30px;
}

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

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

.info-item i {
    color: #d4a574;
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item p {
    margin: 0;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.info-item strong {
    color: #2c2c2c;
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #d4a574;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: #c19660;
}

.call-direct {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.call-direct a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.call-direct a:hover {
    color: #c19660;
    text-decoration: underline;
}

/* FAQ Section - Accordion */
.faq-section {
    padding: 80px 20px;
    background: white;
}

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

.faq-container .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Details/Summary Elements */
.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d4a574;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.1);
}

.faq-item[open] {
    border-color: #d4a574;
}

/* Question (Summary) */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #2c2c2c;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #d4a574;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
    display: none;
}

/* Custom arrow indicator */
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #d4a574;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

/* Answer */
.faq-answer {
    padding: 0 25px 20px 25px;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 0;
}

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

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

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

    .package-card.featured {
        transform: none;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        gap: 15px;
    }

    .bento-item.bento-large {
        grid-column: span 2;
    }

    .bento-item.bento-tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .faq-question {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px 18px 20px;
    }

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

    .bento-item.bento-large {
        grid-column: span 2;
    }

    .bento-item.bento-tall {
        grid-row: span 1;
    }

    .contact-form {
        padding: 20px;
    }

    .package-ribbon {
        display: none;
    }

    .styles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }

    .style-card {
        padding: 0 20px 40px 20px;
    }

    .style-card:nth-child(3n) {
        border-right: 1px solid #e0e0e0;
    }

    .style-card:nth-child(2n) {
        border-right: none;
    }

    .style-card:nth-last-child(-n+3) {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 40px;
    }

    .style-card:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .styles-container .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-links {
        flex-direction: column;
    }

    .hero-link {
        width: 100%;
        justify-content: center;
    }

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

    .style-card {
        padding: 0 10px 40px 10px;
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }

    .style-card:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }

    .styles-container .section-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 18px;
    }

    .faq-question::after {
        font-size: 1.5rem;
        margin-left: 15px;
    }

    .faq-answer {
        padding: 0 18px 16px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 15px;
    }

    .bento-item.bento-large,
    .bento-item.bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item {
        padding: 25px;
    }

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

/* Section CTA Button */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0 0 0;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid #d4a574;
}

.cta-btn:hover {
    background: #c19660;
    border-color: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

@media (max-width: 768px) {
    .section-cta {
        margin-top: 30px;
        padding: 20px 0 0 0;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}