/* ========================================
   SPEED LASER STUDIO - WEDDING LANDING PAGE
   Brand Colors: Navy #000080, White #FFFFFF, Gold #C9A227
   Mobile-First Design
   ======================================== */

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #000080;
    --white: #FFFFFF;
    --gold: #C9A227;
    --light-gold: #E6D191;
    --dark-navy: #000060;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --text-gray: #6C757D;
    --shadow-sm: 0 2px 8px rgba(0, 0, 128, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 128, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 128, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: #333;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.underline {
    width: 80px;
    height: 4px;
    margin: 0 auto 2rem;
}

.gold-underline {
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

/* ========================================
   BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.gold-button {
    background: linear-gradient(135deg, var(--gold), #D4B555);
    color: var(--white);
}

.gold-button:hover {
    background: linear-gradient(135deg, #D4B555, var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* ========================================
   STICKY CTA BAR (MOBILE)
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 128, 0.15);
    z-index: 1000;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .cta-button {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.95rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.03) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.brand-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Hero Video Wrapper - Right below logo */
.hero-video-wrapper {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-video-wrapper .video-thumbnail-link {
    display: block;
    min-height: 250px;
}

.hero-video-wrapper .video-thumbnail {
    min-height: 250px;
}

.logo-text {
    margin-bottom: 30px;
}

.hero-headline {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--navy);
}

.hero-headline .highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.desktop-br {
    display: none;
}

.urgency-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
}

.urgency-note i {
    margin-right: 8px;
}

/* Hero Gallery */
.hero-gallery {
    margin-top: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 250px;
}

.gallery-item.main-image {
    grid-column: 1;
    min-height: 300px;
}

/* Video Container for Responsive YouTube Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container:hover {
    transform: none; /* Disable transform on video to avoid distortion */
    box-shadow: 0 8px 32px rgba(0, 0, 128, 0.2);
}

/* Video Thumbnail Link (Alternative to Embed) */
.video-thumbnail-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    background: #000;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .thumbnail-image {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-thumbnail-link:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
    font-size: 4rem;
    color: #FF0000;
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.play-button-overlay span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
}

.video-fallback {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.video-fallback p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
}

.video-fallback a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-fallback a:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

.video-fallback i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-gray);
    text-align: center;
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.image-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   WHY THIS WORKS SECTION
   ======================================== */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-item.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
}

.why-item.featured h3,
.why-item.featured p {
    color: var(--white);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.why-item.featured .why-icon {
    background: var(--gold);
}

.why-icon i {
    font-size: 2rem;
    color: var(--navy);
}

.why-item.featured .why-icon i {
    color: var(--white);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.why-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.why-item em {
    font-weight: 600;
    font-style: normal;
    color: var(--gold);
}

.why-item.featured em {
    color: var(--light-gold);
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, #FFFEF8 0%, var(--white) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #D4B555);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.popular-badge i {
    margin-right: 5px;
}

.package-header {
    text-align: center;
    border-bottom: 2px solid var(--medium-gray);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.package-name {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.package-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.package-ideal {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.package-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-features li i {
    color: var(--gold);
    font-size: 1.1rem;
    min-width: 20px;
}

.package-button {
    width: 100%;
    padding: 16px;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.package-card.featured .package-button.gold-button {
    background: linear-gradient(135deg, var(--gold), #D4B555);
    border: 2px solid var(--gold);
}

/* ========================================
   ON-THE-GO SECTION
   ======================================== */
.onthego-section {
    padding: 80px 0;
    background: var(--white);
}

.onthego-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.onthego-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.onthego-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.onthego-header {
    margin-bottom: 25px;
}

.onthego-name {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.onthego-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
}

.onthego-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.onthego-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.onthego-features li i {
    color: var(--gold);
}

.onthego-button {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.onthego-button:hover {
    background: var(--white);
    color: var(--navy);
}

/* ========================================
   EXCLUSIVE OFFERS SECTION
   ======================================== */
.exclusive-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.exclusive-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

.exclusive-content {
    position: relative;
    z-index: 1;
}

.section-intro.light .section-title {
    color: var(--white);
}

.expo-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-gold);
    text-align: center;
    margin-bottom: 10px;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.offer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon i {
    font-size: 2rem;
    color: var(--white);
}

.offer-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.offer-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.offer-card p strong {
    color: var(--light-gold);
    font-weight: 700;
}

.urgency-banner {
    background: var(--gold);
    color: var(--navy);
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.urgency-banner i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.urgency-banner p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   SAMPLES SECTION
   ======================================== */
.samples-section {
    padding: 80px 0;
    background: var(--white);
}

.samples-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.sample-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: var(--white);
}

.sample-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.sample-image .image-placeholder {
    padding: 60px 20px;
}

.sample-caption {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    background: var(--light-gray);
    margin: 0;
}

.sample-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.items-list {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 16px;
    margin-top: 40px;
}

.items-list h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 25px;
    text-align: center;
}

.items-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.items-list ul {
    list-style: none;
}

.items-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.items-list li i {
    color: var(--gold);
    font-size: 1rem;
}

.items-note {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin: 25px auto 0;
    font-size: 1rem;
    color: #333;
    max-width: 900px;
    text-align: center;
}

.items-note i {
    color: var(--gold);
    margin-right: 8px;
}

.items-note strong {
    color: var(--navy);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.author-date {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    padding: 80px 0;
    background: var(--white);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 15px;
}

.wedding-form {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.form-note i {
    margin-right: 5px;
    color: var(--gold);
}

/* Thank You Message */
.thank-you-message {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon i {
    font-size: 3rem;
    color: var(--white);
}

.thank-you-message h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.thank-you-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thank-you-message ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-message li {
    padding: 10px 0;
    font-size: 1rem;
}

.thank-you-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-contact a {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 700;
}

.thank-you-contact a:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
    background: var(--navy);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

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

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--light-gold);
    font-size: 1rem;
    font-weight: 500;
}

.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.contact-item i {
    color: var(--gold);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-gold);
}

.footer-reminder {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-reminder p {
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-reminder i {
    color: var(--light-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .desktop-br {
        display: inline;
    }
    
    .brand-logo {
        max-width: 250px;
    }
    
    .hero-video-wrapper {
        max-width: 800px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.main-image {
        grid-column: auto;
    }
    
    .why-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-item.featured {
        grid-column: 1 / -1;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card.featured {
        grid-column: 1 / -1;
    }
    
    .onthego-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .samples-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .items-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .footer-reminder {
        grid-column: 1 / -1;
    }
    
    .footer-reminder p {
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .brand-logo {
        max-width: 280px;
    }
    
    .hero-video-wrapper {
        max-width: 900px;
    }
    
    .footer-logo {
        max-width: 180px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.main-image {
        grid-column: auto;
        min-height: auto;
    }
    
    .why-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-item.featured {
        grid-column: auto;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-card.featured {
        grid-column: auto;
        transform: scale(1.05);
    }
    
    .package-card.featured:hover {
        transform: scale(1.08) translateY(-8px);
    }
    
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .samples-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-reminder {
        grid-column: 1 / -1;
    }
}

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

.hero-content,
.section-intro,
.package-card,
.testimonial-card,
.offer-card {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
