/* Minimal Landing Page Styles */
.landing-page-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

/* Custom Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-half {
    flex: 0 0 50%;
    padding: 0 15px;
}

.col-third {
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.col-quarter {
    flex: 0 0 25%;
    padding: 0 15px;
}

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

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

/* Base Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch-friendly and Performance */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button, .hero-cta, .cta-button, .gallery-tab, .faq-question, .read-more-btn {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
    touch-action: manipulation;
    user-select: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: #ffffff;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 500px;
    text-align: center;
}

.hero-cta {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
    cursor: pointer;
}

.hero-cta:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .hero-content {
        margin-bottom: 20px;
    }
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-gray {
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Combined Doctor & Benefits Section */
.doctor-benefits-section {
    padding: 40px 0;
    background: #f9fafb;
}

.doctor-benefits-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.doctor-column {
    flex: 0 0 48%;
}

.doctor-column h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: left;
    letter-spacing: -0.02em;
}

.benefits-column {
    flex: 0 0 52%;
}

/* Doctor Section */
.doctor-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.25);
    text-align: center;
    height: 100%;
}

.doctor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 20px;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 700;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.doctor-title {
    font-size: 0.95rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 18px;
}

.doctor-experience {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.doctor-lists .doctor-list{
    margin-top: 20px;
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.25);
    text-align: left;
    height: 100%;
}

.doctor-list h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    text-align: center;
}

.doctor-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-list li {
    padding: 5px 0;
    color: #666;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.4;
}

.doctor-list li:first-child {
    border-top: 1px solid #f1f5f9;
}

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

/* Benefits Section */
.benefits-header {
    margin-bottom: 25px;
}

.benefits-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

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

.benefit-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.25);
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #f1f5f9;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px 0 rgba(37, 99, 235, 0.3);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: #eff6ff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.benefit-icon i {
    color: #2563eb;
    font-size: 1.1rem;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Additional Info Cards */
.additional-info-section {
    margin-top: 20px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.25);
    text-align: left;
}

.info-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
        text-align: center;
}

.info-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.safety-statement-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.25);
    text-align: center;
    margin-bottom: 20px;
}

.safety-statement-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Enhanced Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gallery-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 12px 24px;
    background: #f3f4f6;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: #2563eb;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Patient Albums Grid */
.patient-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.patient-album-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.patient-album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.patient-album-cover {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.patient-album-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.patient-album-card:hover .patient-album-cover img {
    transform: scale(1.05);
}

.patient-album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.patient-album-card:hover .patient-album-overlay {
    opacity: 1;
}

.patient-album-overlay-content {
    text-align: center;
    color: #fff;
}

.patient-album-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: block;
}

.patient-album-overlay-content p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.patient-album-info {
    padding: 20px;
    text-align: center;
}

.patient-album-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.patient-album-count {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Gallery grid without tabs */
.gallery-header + .gallery-grid {
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.8), rgba(16, 185, 129, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.gallery-overlay-content p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.gallery-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-video-item {
    position: relative;
}

.gallery-video-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video-item::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: #2563eb;
    font-size: 1.2rem;
    z-index: 3;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-cta-button {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
    cursor: pointer;
}

.gallery-cta-button:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 80px;
    line-height: 1;
    color: #2563eb;
    opacity: 0.15;
    font-family: Georgia, serif;
    font-weight: bold;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-rating .fa-star.active {
    color: #fbbf24;
}

.testimonial-rating .fa-star {
    color: #e5e7eb;
}

.read-more-btn {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    font-weight: 500;
    margin-left: 5px;
    position: relative;
    z-index: 1;
}

.read-more-btn:hover {
    color: #1d4ed8;
}

/* Google Reviews Section */
.google-reviews-section {
    text-align: center;
    margin-top: 40px;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.google-reviews-btn:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transform: translateY(-1px);
}

.google-icon {
    flex-shrink: 0;
}

.google-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.google-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.google-subtitle {
    font-size: 0.95rem;
    color: #666;
}

/* FAQs Section */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question span {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-icon {
    color: #2563eb;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    margin-left: 16px;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
}

/* CTA Section */
.cta-section {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .doctor-benefits-container {
        gap: 50px;
    }
    
    .doctor-column {
        flex: 0 0 45%;
    }
    
    .benefits-column {
        flex: 0 0 55%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .col-half,
    .col-third,
    .col-quarter {
        flex: 0 0 100%;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Mobile: Stack doctor and benefits */
    .doctor-benefits-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .doctor-column,
    .benefits-column {
        flex: none;
        width: 100%;
    }

    .doctor-column h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .doctor-card {
        padding: 24px 20px;
    }
    
    .doctor-photo {
        width: 150px;
        height: 150px;
        margin: auto;
        margin-bottom: 16px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card-title {
        font-size: .95rem;
    }
    
    .info-card-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .safety-statement-card {
        padding: 20px;
    }
    
    .safety-statement-card p {
        font-size: 1rem;
    }
    
    .doctor-name {
        font-size: 1.4rem;
    }
    
    .doctor-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .doctor-experience {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .doctor-list li {
        font-size: 0.95rem;
    }
    
    /* Benefits Mobile */
    .benefits-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    .benefit-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
    
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .gallery-tab {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }
    
    /* Patient Albums Mobile */
    .patient-albums-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .patient-album-info h3 {
        font-size: 1.1rem;
    }
    
    .patient-album-count {
        font-size: 0.85rem;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 140px;
    }
    
    .gallery-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
    }
    
    /* Google Reviews Mobile */
    .google-reviews-btn {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .google-title {
        font-size: 0.9rem;
    }
    
    .google-subtitle {
        font-size: 0.8rem;
    }
    
    /* FAQs Mobile */
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 18px 16px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding-top: 12px;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Custom Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 20px 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-body {
    padding: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
}

.form-submit:hover {
    background: #1d4ed8;
}

.privacy-text {
    font-size: 12px;
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.4;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

/* Hero WhatsApp Button */
.whatsapp-hero-btn {
    background: #25d366;
    color: white;
    border: none;
    margin-left: 15px;
}

.whatsapp-hero-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.whatsapp-hero-btn i {
    margin-right: 8px;
}

/* Gallery WhatsApp Button */
.whatsapp-gallery-btn {
    background: #25d366;
    color: white;
    margin-left: 15px;
}

.whatsapp-gallery-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.whatsapp-gallery-btn i {
    margin-right: 8px;
}

/* CTA WhatsApp Button */
.whatsapp-cta-btn {
    background: #25d366;
    color: white;
    margin-left: 15px;
}

.whatsapp-cta-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.whatsapp-cta-btn i {
    margin-right: 8px;
}

/* Button Containers */
.hero-buttons,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}
.cta-buttons {
    justify-content: center;
}

.gallery-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-buttons,
    .cta-buttons,
    .gallery-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .whatsapp-hero-btn,
    .whatsapp-gallery-btn,
    .whatsapp-cta-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.95);
        transform-origin: center;
        margin: 15px 0;
    }
}

/* Gallery Popup Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.gallery-modal-content video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.gallery-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal-nav {
    position: absolute;
    bottom: 0px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s 
ease;
}

.gallery-modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal-prev {
    left: calc(50% - 110px);
}

.gallery-modal-next {
    right: calc(50% - 110px);
}

.gallery-modal-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* Self-hosted video styles */
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
}

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

.gallery-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-video-overlay::after {
    content: '▶';
    color: #2563eb;
    font-size: 1.2rem;
    margin-left: 3px;
}
