/* Font Face Declaration */
@font-face {
    font-family: 'Giaza';
    src: url('./drive-download-20250925T162852Z-1-001/Fonts/Giaza Desktop (Purchased Font)/Giaza.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: #fbfbf7;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Giaza', 'Playfair Display', serif;
    font-weight: normal;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffe8e4;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #0a4697;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f3471f;
}

.download-btn {
    background: #f3471f;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Video Section */
.video-section {
    width: 100%;
    margin-top: 80px; /* Account for fixed navbar */
    background: #fbfbf7;
    padding: 2rem 0;
}

.hero-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Moving Banner */
.moving-banner {
    width: 100%;
    background: #ffe8e4;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.banner-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.banner-text {
    color: #f3471f;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 0 3rem;
    display: inline-block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: #fbfbf7;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/Black%20and%20White.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: normal;
    font-family: 'Giaza', 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: #f3471f;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.phone-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 8px solid #333;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 2;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Blue Banners */
.blue-banner {
    padding: 1rem 0;
    background: #0a4697;
}

/* Trust Banner */
.trust-banner {
    width: 100%;
    background: #fbfbf7;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.trust-banner-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.trust-banner-text {
    color: #0a4697;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 0 3rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brides Logo Section */
.brides-logo-section {
    padding: 2rem 0;
    background: #ffffff;
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brides-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Month of Coordination Section */
.month-of-coordination {
    padding: 6rem 0;
    background: #0a4697;
    color: #fbfbf7;
}

.month-of-coordination h2 {
    color: #fbfbf7;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.month-of-coordination .section-subtitle {
    color: #ffe8e4;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.coordination-oneline {
    white-space: nowrap;
    overflow: visible;
}

.coordination-whats-included {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 232, 228, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.coordination-whats-included h3 {
    color: #ffe8e4;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.coordination-whats-included h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #f3471f;
    border-radius: 2px;
}

.coordination-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    color: #fbfbf7;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coordination-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fbfbf7;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coordination-list li:last-child {
    border-bottom: none;
}

.coordination-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f3471f;
    font-weight: bold;
    font-size: 1.5rem;
}

.coordination-booking-info {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 232, 228, 0.15);
    border-radius: 12px;
    border-left: 4px solid #f3471f;
}

.coordination-booking-info p {
    color: #fbfbf7;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.coordination-booking-info strong {
    color: #ffe8e4;
}

.coordination-cta-text {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 232, 228, 0.3);
}

.coordination-cta-text h4 {
    color: #ffe8e4;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coordination-cta-text p {
    color: #fbfbf7;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Month of Coordination Pricing */
.coordination-pricing {
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 232, 228, 0.3);
}

.coordination-pricing h3 {
    color: #ffe8e4;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: #fbfbf7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pricing-toggle-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #0a4697;
    background: transparent;
    color: #0a4697;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle-btn:hover {
    background: rgba(10, 70, 151, 0.1);
    border-color: #0a4697;
}

.pricing-toggle-btn.active {
    background: #f3471f;
    border-color: #f3471f;
    color: white;
    transform: scale(1.05);
}

.pricing-details-wrapper {
    position: relative;
    min-height: 120px;
}

.coordination-pricing-details {
    position: relative;
    min-height: 150px;
}

.pricing-plan {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-plan.active {
    display: block;
    opacity: 1;
    animation: fadeInPrice 0.3s ease;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffe8e4;
    font-family: 'Giaza', 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.price-amount span {
    font-size: 1.5rem;
    color: #fbfbf7;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.price-description {
    color: #0a4697;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

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

.event-managers-section {
    margin-top: 5rem;
    padding-top: 4rem;
    position: relative;
}

.event-managers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffe8e4, transparent);
}

.event-managers-section h3 {
    color: #ffe8e4;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.event-managers-section h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #f3471f;
    border-radius: 2px;
}

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

.planner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 2px solid rgba(255, 232, 228, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.planner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 232, 228, 0.4);
}

.planner-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid #ffe8e4;
}

.planner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.planner-name {
    color: #ffe8e4;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.planner-bio {
    color: #fbfbf7;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: left;
}

.calendly-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #0a4697;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(10, 70, 151, 0.1);
}

.popup-content h2 {
    color: #0a4697;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #0a4697;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f2c8c1 0%, #ffe8e4 50%, #f2c8c1 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.features h2 {
    font-family: 'Giaza', 'Poppins', sans-serif;
    font-weight: normal;
    color: #0a4697;
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.features-left {
    display: flex;
    justify-content: center;
}

.features-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                0 8px 20px rgba(242, 200, 193, 0.3);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.features-image:hover {
    transform: scale(1.02);
}

.twirl-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Features List */
.features-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #0a4697;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #fbfbf7 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 
                0 4px 10px rgba(242, 200, 193, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(242, 200, 193, 0.2);
    font-family: 'Poppins', sans-serif;
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 
                0 8px 20px rgba(242, 200, 193, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card h3 {
    color: #0a4697;
    margin-bottom: 0.75rem;
    font-family: 'Giaza', 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: normal;
}

.feature-card p {
    color: #0a4697;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* App Features */
.app-features {
    padding: 5rem 0;
    background: #fbfbf7;
}

.app-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.app-features-left {
    display: flex;
    flex-direction: column;
}

.app-features-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.app-features h2 {
    color: #0a4697;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.app-features .section-subtitle {
    color: #0a4697;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.app-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.app-feature:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    color: #f3471f;
}

.app-feature h3 {
    color: #0a4697;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-family: 'Giaza', 'Poppins', sans-serif;
}

.app-feature p {
    color: #0a4697;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cafe-photo-container {
    width: 100%;
    max-width: 400px;
}

.cafe-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cafe-photo:hover {
    transform: scale(1.02);
}

/* Combined Cannoli Background for ALTARE Way & Pricing */
.cannoli-background-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Cannoli.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: transparent;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #ffe8e4;
    color: #0a4697;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 232, 228, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Rotating Reviews */
.rotating-reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f2c8c1 0%, #ffe8e4 50%, #f2c8c1 100%);
    position: relative;
    overflow: hidden;
}

.rotating-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.rotating-reviews h2 {
    color: #0a4697;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}


.reviews-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    perspective: 1000px;
}

.review-slide {
    display: none;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15),
                0 10px 25px rgba(242, 200, 193, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform-style: preserve-3d;
    animation: slideInReview 1s ease-out;
}

.review-slide.active {
    display: block;
}

@keyframes slideInReview {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotateX(15deg) scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0deg) scale(1); 
    }
}

@keyframes slideOutReview {
    0% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-30px) rotateX(-15deg) scale(0.95); 
    }
}

.review-slide::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    color: rgba(243, 71, 31, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-slide blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #0a4697;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.review-slide cite {
    color: #f3471f;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(243, 71, 31, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(243, 71, 31, 0.2);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.review-dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.review-dots .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #f3471f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.review-dots .dot.active {
    background: #f3471f;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(243, 71, 31, 0.4);
}

.review-dots .dot.active::before {
    width: 100%;
    height: 100%;
    background: #fff;
}

.review-dots .dot:hover {
    background: #f3471f;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(243, 71, 31, 0.3);
}


.how-it-works h2 {
    color: #fbfbf7;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
}

.step h3 {
    color: #fbfbf7;
    margin-bottom: 1rem;
    font-family: 'Giaza', 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.step p {
    color: rgba(251, 251, 247, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonial {
    padding: 4rem 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial cite {
    color: #ff4757;
    font-weight: 600;
}

.testimonial-inline {
    background: #f8f9fa;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #ff4757;
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    background: transparent;
    color: white;
    text-align: center;
}

.download-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.download-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.download-logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Combined Legs Background for Why ALTARE & Download */
.legs-background-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/LEGS.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* Why ALTARE */
.why-altare {
    padding: 6rem 0;
    background: transparent;
}

.why-altare h2 {
    color: #fbfbf7;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
}

.why-altare p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fbfbf7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: transparent;
    border: none;
    margin: 0;
}

.pricing h2 {
    color: #fbfbf7;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.pricing .section-subtitle {
    color: #fbfbf7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid #ff4757;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4757;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.price-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: bold;
}

.pricing-btn {
    display: block;
    width: 100%;
    background: #ff4757;
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.add-ons {
    margin-top: 4rem;
    text-align: center;
}

.add-ons h3 {
    margin-bottom: 2rem;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.add-on {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.add-on-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4757;
    margin: 0.5rem 0;
}

/* Simplified Pricing */
.pricing-simple {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
}

.pricing-box {
    background: rgba(251, 251, 247, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    border: 3px solid #0a4697;
}

.pricing-box h3 {
    font-size: 2rem;
    color: #0a4697;
    margin-bottom: 1rem;
    font-family: 'Giaza', 'Poppins', sans-serif;
}

.pricing-highlight {
    display: inline-block;
    font-size: 1.3rem;
    color: white;
    background: #f3471f;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 71, 31, 0.4);
}

.pricing-after-trial {
    font-size: 1.2rem;
    color: #0a4697;
    margin-bottom: 2rem;
}

.pricing-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-option {
    flex: 0 0 auto;
}

.pricing-option .price {
    font-size: 3rem;
    font-weight: bold;
    color: #f3471f;
}

.pricing-option .price span {
    font-size: 1.2rem;
    color: #0a4697;
}

.pricing-divider {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-box h3 {
        font-size: 1.5rem;
    }
    
    .pricing-option .price {
        font-size: 2rem;
    }
    
    .pricing-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-divider {
        display: none;
    }
}

/* Founder Note */
.founder-note {
    padding: 0;
    background: #fbfbf7;
    color: #0a4697;
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.founder-video-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.founder-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-text-container {
    padding: 4rem 5rem;
    background: #fbfbf7;
}

.founder-note h2 {
    color: #0a4697;
    font-family: 'Giaza', 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.founder-text {
    color: #0a4697;
}

.founder-text p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.founder-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: #ffe8e4;
    text-align: center;
}

.final-cta h2 {
    color: #0a4697;
}

.final-cta p {
    color: #0a4697;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./VEIL.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.contact h2 {
    color: #fbfbf7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.contact p {
    color: #fbfbf7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.honeybook-form-container {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffe8e4;
    color: #0a4697;
    font-family: 'Poppins', sans-serif;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(10, 70, 151, 0.6);
}

.submit-btn {
    width: 100%;
    background: #f3471f;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 71, 31, 0.3);
}

/* Footer */
.footer {
    background: #ffe8e4;
    color: #0a4697;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #0a4697;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(10, 70, 151, 0.2);
    color: #0a4697;
}

.footer-credits {
    margin-bottom: 1rem;
}

.footer-credits p {
    font-size: 0.9rem;
    color: #0a4697;
}

.footer-credits a {
    color: #0a4697;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #f3471f;
}

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

.footer-contact-info p {
    font-size: 0.95rem;
    color: #0a4697;
}

.footer-contact-info a {
    color: #0a4697;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #f3471f;
    text-decoration: underline;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .founder-layout {
        grid-template-columns: 1fr;
    }
    
    .founder-video-container {
        min-height: 400px;
    }
    
    .founder-text-container {
        padding: 3rem 2rem;
    }
    
    .planners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .popup-content {
        padding: 2rem;
        width: 95%;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .app-feature {
        padding: 1rem;
    }
    
    .app-feature h3 {
        font-size: 1rem;
    }
    
    .app-feature p {
        font-size: 0.85rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-logos {
        gap: 1.5rem;
    }
    
    .download-logos {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .planners-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-video {
        border-radius: 18px;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .trust-title {
        font-size: 2rem;
    }
}
