/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   Miami Video Production
   ======================================== */

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */
.menu-open {
    overflow: hidden;
}

.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* ========================================
   TABLET STYLES (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    /* Header adjustments */
    .nav-menu {
        gap: 25px;
    }

    .nav-menu > li > a {
        font-size: 0.9rem;
    }

    .lang-switcher a {
        padding: 6px 12px;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Service page hero */
    .service-hero h1 {
        font-size: 2.75rem;
    }

    .service-hero-subtitle {
        font-size: 1.15rem;
    }

    /* Grids */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Service page specific */
    .what-is-animation,
    .what-is-content {
        gap: 40px;
    }

    .animation-benefits-grid,
    .benefit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MOBILE STYLES (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    /* ========================
       HEADER & NAVIGATION
       ======================== */
    .header {
        padding: 15px 0;
    }

    .header.scrolled {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 1rem;
        max-width: 150px;
        line-height: 1.2;
    }

    .logo svg,
    .logo img {
        height: 40px;
    }

    /* Hamburger menu */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
    }

    /* Mobile navigation */
    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--black) 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 80px 25px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-main.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 30px;
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li > a {
        padding: 16px 0;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown menus on mobile */
    .dropdown > a::after {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: transparent;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 10px 0 15px 15px;
    }

    .dropdown-menu li a {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Language switcher on mobile */
    .lang-switcher {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lang-switcher a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Header CTA on mobile */
    .header-cta {
        width: 100%;
        text-align: center;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    /* ========================
       HERO SECTIONS
       ======================== */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    /* Service page hero */
    .service-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .service-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-hero-subtitle,
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    /* ========================
       BREADCRUMB
       ======================== */
    .service-breadcrumb {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .service-breadcrumb .container {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* ========================
       SECTION HEADERS
       ======================== */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    /* ========================
       SECTIONS GENERAL
       ======================== */
    .service-section {
        padding: 60px 0;
    }

    /* What is section */
    .what-is-animation,
    .what-is-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-is-content h2 {
        font-size: 1.75rem;
    }

    .what-is-content p {
        font-size: 1rem;
    }

    .what-is-features {
        gap: 15px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .what-is-visual,
    .visual-placeholder {
        aspect-ratio: 16/10;
    }

    /* ========================
       BENEFITS GRID
       ======================== */
    .animation-benefits-grid,
    .benefit-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

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

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    /* ========================
       PROCESS TIMELINE
       ======================== */
    .animation-process-timeline {
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
    }

    .animation-process-timeline::before {
        display: none;
    }

    .process-step {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

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

    .step-content {
        flex: 1;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.95rem;
        max-width: none;
    }

    /* ========================
       TABS
       ======================== */
    .animation-types-tabs .tabs-nav {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .animation-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
        text-align: center;
    }

    .animation-type-content.active,
    .type-content-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .type-text h3 {
        font-size: 1.25rem;
    }

    .type-features {
        font-size: 0.9rem;
    }

    .type-visual {
        order: -1;
    }

    /* ========================
       FAQ ACCORDION
       ======================== */
    .faq-accordion {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 12px;
    }

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

    .faq-question span {
        padding-right: 30px;
    }

    .faq-question svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }

    /* ========================
       RELATED SERVICES
       ======================== */
    .related-services-new,
    .related-services {
        padding: 60px 0;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .related-service-card {
        padding: 25px 20px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .related-service-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .related-service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 5px;
    }

    .related-service-card p {
        font-size: 0.9rem;
        margin: 0;
    }

    /* ========================
       CONTACT SECTION
       ======================== */
    .service-contact-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-features {
        justify-content: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .btn-block {
        padding: 16px;
    }

    /* ========================
       FOOTER
       ======================== */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding: 25px 0;
        font-size: 0.85rem;
    }

    /* ========================
       GRIDS GENERAL
       ======================== */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

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

    .testimonial-card {
        padding: 30px 25px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    /* ========================
       CLIENT MARQUEE
       ======================== */
    .clients-marquee {
        padding: 25px 0;
    }

    .marquee-track img {
        height: 35px;
    }

    .clients-marquee::before,
    .clients-marquee::after {
        width: 50px;
    }
}

/* ========================================
   SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

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

    /* Header */
    .logo-text {
        font-size: 0.9rem;
        max-width: 130px;
    }

    .logo svg,
    .logo img {
        height: 35px;
    }

    /* Service hero */
    .service-hero {
        padding: 100px 0 50px;
    }

    .service-hero h1 {
        font-size: 1.65rem;
    }

    /* Sections */
    .service-section {
        padding: 50px 0;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Benefits */
    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    /* Tabs */
    .animation-tab-btn {
        flex: 1 1 100%;
        padding: 12px 15px;
    }

    /* Process */
    .process-step {
        gap: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }

    /* Contact */
    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }

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

    .footer-grid {
        gap: 30px;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 25px;
    }
}

/* ========================================
   LANDSCAPE PHONE
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .service-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .nav-main {
        padding-top: 60px;
    }

    .nav-menu > li > a {
        padding: 12px 0;
    }
}

/* ========================================
   TOUCH DEVICE IMPROVEMENTS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-menu > li > a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .dropdown-menu li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 48px;
    }

    .faq-question {
        min-height: 56px;
    }

    /* Remove hover effects on touch */
    .benefit-card:hover,
    .related-service-card:hover,
    .portfolio-item:hover {
        transform: none;
    }

    /* Add active states instead */
    .benefit-card:active,
    .related-service-card:active {
        transform: scale(0.98);
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .header,
    .hamburger,
    .footer,
    .hero-cta,
    .service-contact-section {
        display: none;
    }

    .service-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .service-section {
        padding: 30px 0;
    }

    body {
        font-size: 12pt;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }
}

/* ========================================
   ANIMATION PAGE SPECIFIC RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .animation-hero .hero-content {
        text-align: center;
    }

    .animation-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .animation-portfolio-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
}

/* ========================================
   HIGH CONTRAST / ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-video {
        display: none;
    }

    .marquee-track {
        animation: none;
    }
}

/* ========================================
   FIX FOR iOS SAFARI 100vh
   ======================================== */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }

    .nav-main {
        height: -webkit-fill-available;
    }
}

/* ========================================
   SERVICE PAGE SPECIFIC RESPONSIVE
   ======================================== */

/* Tablet styles for service pages */
@media (max-width: 1024px) {
    /* Service page hero adjustments */
    .service-hero .hero-content,
    .service-hero-content {
        max-width: 100%;
    }

    /* Two column grids */
    .animation-benefits-grid,
    .benefit-cards-grid,
    .streaming-benefits-grid,
    .photography-services-grid,
    .realestate-services-grid,
    .yachts-services-grid,
    .timelapse-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* What is sections */
    .what-is-animation,
    .what-is-content,
    .streaming-tech-wrapper,
    .photography-why-grid,
    .realestate-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact wrappers */
    .contact-wrapper,
    .streaming-contact-wrapper,
    .photography-contact-wrapper,
    .realestate-contact-wrapper,
    .timelapse-contact-wrapper,
    .yachts-contact-wrapper,
    .events-contact-wrapper,
    .interviews-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Process timeline */
    .animation-process-timeline,
    .streaming-process-timeline,
    .yachts-process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .animation-process-timeline::before,
    .streaming-process-timeline::before,
    .yachts-process-timeline::before {
        display: none;
    }

    /* Pricing grids */
    .yachts-packages-grid,
    .timelapse-pricing-grid,
    .realestate-packages-grid,
    .photography-packages-grid,
    .events-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile styles for service pages */
@media (max-width: 768px) {
    /* Service hero */
    .service-hero {
        padding: 110px 0 50px;
    }

    .service-hero .hero-background {
        opacity: 0.8;
    }

    .service-hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .service-hero .hero-content p,
    .service-hero-subtitle {
        font-size: 0.95rem;
    }

    /* Section headers for service pages */
    .section-header h2,
    .service-section h2 {
        font-size: 1.65rem;
    }

    /* What is section content */
    .what-is-content h2 {
        font-size: 1.5rem;
    }

    .what-is-features {
        flex-direction: column;
        gap: 12px;
    }

    .feature-item {
        justify-content: flex-start;
    }

    /* Single column grids */
    .animation-benefits-grid,
    .benefit-cards-grid,
    .streaming-benefits-grid,
    .photography-services-grid,
    .realestate-services-grid,
    .yachts-services-grid,
    .timelapse-types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Benefit cards mobile */
    .benefit-card {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }

    .benefit-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Tabs mobile */
    .tabs-nav,
    .animation-types-tabs .tabs-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .animation-tab-btn {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Tab content */
    .tabs-content {
        margin-top: 20px;
    }

    .animation-type-content {
        padding: 20px;
    }

    .animation-type-content.active,
    .type-content-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .type-text {
        order: 2;
    }

    .type-visual {
        order: 1;
        aspect-ratio: 16/9;
    }

    .type-text h3 {
        font-size: 1.15rem;
    }

    .type-features li {
        font-size: 0.9rem;
        padding-left: 20px;
    }

    /* Process steps mobile */
    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .step-content {
        flex: 1;
    }

    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

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

    /* FAQ mobile */
    .container-narrow {
        padding: 0 15px;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .faq-question svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

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

    .faq-answer p {
        font-size: 0.85rem;
        padding: 0;
    }

    /* Related services mobile */
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .related-service-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .related-service-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .related-service-icon svg {
        width: 22px;
        height: 22px;
    }

    .related-service-card h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .related-service-card p {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Contact form mobile */
    .service-contact-section {
        padding: 50px 0;
    }

    .contact-wrapper {
        gap: 30px;
    }

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

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-feature {
        justify-content: center;
    }

    .contact-form {
        padding: 25px 18px;
        border-radius: 15px;
    }

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

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

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-block,
    .contact-form button[type="submit"] {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* Pricing grids mobile */
    .yachts-packages-grid,
    .timelapse-pricing-grid,
    .realestate-packages-grid,
    .photography-packages-grid,
    .events-pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Small mobile for service pages */
@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 40px;
    }

    .service-hero h1 {
        font-size: 1.6rem;
    }

    .hero-cta {
        gap: 10px;
    }

    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .service-section {
        padding: 40px 0;
    }

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

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    /* Tabs on small screens */
    .animation-tab-btn {
        flex: 1 1 100%;
        padding: 10px 15px;
    }

    /* Benefits on small screens */
    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    /* Process on small screens */
    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
    }

    /* Contact on small screens */
    .contact-form {
        padding: 20px 15px;
    }

    .contact-info h2 {
        font-size: 1.35rem;
    }
}

/* ========================================
   VISUAL PLACEHOLDER RESPONSIVE
   ======================================== */
.visual-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #360185) 0%, var(--secondary, #8F0177) 100%);
    border-radius: 15px;
    padding: 40px 20px;
    aspect-ratio: 16/10;
    color: white;
    text-align: center;
}

.visual-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.visual-placeholder span {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .visual-placeholder {
        padding: 30px 15px;
        aspect-ratio: 16/9;
    }

    .visual-placeholder svg {
        width: 50px;
        height: 50px;
    }

    .visual-placeholder span {
        font-size: 0.8rem;
    }
}

/* ========================================
   HIGHLIGHT TEXT RESPONSIVE
   ======================================== */
.highlight {
    background: linear-gradient(135deg, var(--accent, #DE1A58) 0%, var(--highlight, #F4B342) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTON RESPONSIVE IMPROVEMENTS
   ======================================== */
@media (max-width: 768px) {
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn svg {
        width: 18px;
        height: 18px;
    }

    .btn-lg {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .btn-outline {
        padding: 12px 22px;
    }
}

/* ========================================
   SEO CONTENT SECTION STYLES
   ======================================== */
.seo-content-section {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content-section h2 {
    font-size: 2rem;
    color: var(--primary, #360185);
    margin-bottom: 30px;
    text-align: center;
}

.seo-content-text {
    column-count: 2;
    column-gap: 40px;
}

.seo-content-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray, #333);
    margin-bottom: 20px;
    text-align: justify;
}

.seo-content-text p:first-child::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary, #360185);
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .seo-content-text {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .seo-content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .seo-content-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .seo-content-text p:first-child::first-letter {
        font-size: 2.5rem;
    }
}
