/* ============================================ */
/* RESPONSIVE.CSS - ПОВНІСТЮ ОНОВЛЕНИЙ */
/* ============================================ */

/* ============================================ */
/* 1200px - 1024px */
/* ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .process-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================ */
/* 1024px - 768px - ОСНОВНІ ВИПРАВЛЕННЯ */
/* ============================================ */
@media (max-width: 1024px) {
    /* HEADER - СВІТЛИЙ */
    .header-container {
        padding: 0 20px;
    }
    
    .header-logo .logo-text {
        font-size: 18px;
    }
    
    .header-logo .logo-icon {
        font-size: 22px;
    }
    
    .header-cta .btn-gold {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    /* NAVIGATION - МОБІЛЬНЕ МЕНЮ (СВІТЛЕ) */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(248, 246, 243, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 24px 30px;
        flex-direction: column;
        align-items: stretch;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: 100vh !important;
        max-height: 100vh !important;
    }
    
    .main-nav.open {
        display: flex !important;
        animation: mobileMenuOpen 0.4s ease forwards;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 0 40px 0;
        flex: 1;
        overflow-y: visible !important;
        max-height: none !important;
    }
    
    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        flex-shrink: 0;
    }
    
    .nav-list > li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        font-size: 17px;
        font-weight: 600;
        color: var(--white);
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        color: var(--gold);
    }
    
    /* Dropdown indicators */
    .has-dropdown > .nav-link::after,
    .has-mega-menu > .nav-link::after {
        content: '▾';
        font-size: 14px;
        color: var(--gold);
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .has-dropdown.open > .nav-link::after,
    .has-mega-menu.open > .nav-link::after {
        transform: rotate(180deg);
    }
    
    /* Dropdown menu mobile */
    .has-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease !important;
        min-width: auto !important;
    }
    
    .has-dropdown.open .dropdown-menu {
        max-height: 500px !important;
        padding: 4px 0 12px !important;
    }
    
    .has-dropdown .dropdown-menu li a {
        padding: 10px 16px 10px 36px;
        font-size: 15px;
        color: var(--text-muted);
    }
    
    .has-dropdown .dropdown-menu li a:hover {
        color: var(--gold);
        padding-left: 40px;
        background: var(--gold-light);
    }
    
    /* Mega menu mobile */
    .has-mega-menu .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        width: 100% !important;
        max-width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    
    .has-mega-menu.open .mega-menu {
        max-height: none !important;
        height: auto !important;
        padding: 8px 0 16px !important;
        overflow: visible !important;
    }
    
    .mega-menu-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .mega-column {
        border-right: none !important;
        padding: 0 !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 4px !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .mega-column:last-child {
        border-bottom: none;
    }
    
    .mega-column-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        cursor: pointer;
        margin-bottom: 0;
        border-bottom: none;
        flex-shrink: 0;
    }
    
    .mega-column-header .mega-icon {
        width: 18px;
        height: 18px;
    }
    
    .mega-column-title {
        font-size: 14px;
        flex: 1;
    }
    
    .mega-column-header::after {
        content: '+';
        font-size: 18px;
        color: var(--gold);
        font-weight: 300;
        transition: transform 0.3s ease;
    }
    
    .mega-column.open .mega-column-header::after {
        content: '−';
    }
    
    .mega-service-list {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        padding-left: 4px;
    }
    
    .mega-column.open .mega-service-list {
        max-height: none !important;
        height: auto !important;
        padding-top: 4px;
        padding-bottom: 4px;
        overflow: visible !important;
    }
    
    .mega-service-list li {
        height: auto !important;
        max-height: none !important;
    }
    
    .mega-service-list li a {
        padding: 6px 10px;
        gap: 8px;
        height: auto !important;
        min-height: 36px;
    }
    
    .mega-service-list li a svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .mega-service-list .service-name {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .mega-service-list .service-desc {
        font-size: 11px;
        line-height: 1.2;
        grid-column: 2;
    }
    
    /* Sidebar mobile */
    .mega-sidebar {
        display: block !important;
        width: 100% !important;
        padding: 16px 0 0 !important;
        border-left: none !important;
        border-top: 1px solid var(--border-color);
        margin-top: 8px;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .promo-card {
        height: auto !important;
        max-height: none !important;
        margin-bottom: 12px;
    }
    
    .promo-card:last-child {
        margin-bottom: 0;
    }
    
    .promo-image-wrapper {
        height: 100px;
        max-height: 100px;
    }
    
    .promo-image-content {
        padding: 12px 16px 16px;
    }
    
    .promo-image-content h4 {
        font-size: 15px;
    }
    
    .promo-contact {
        padding: 12px 14px;
    }
    
    .promo-phone {
        font-size: 15px;
    }
    
    .mega-benefits {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
        padding: 14px 0 0;
        margin-top: 14px;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .benefit-item {
        padding: 4px 0;
        height: auto !important;
        max-height: none !important;
    }
    
    .benefit-item strong {
        font-size: 12px;
    }
    
    .benefit-item span {
        font-size: 11px;
    }
    
    /* Mobile toggle button - СВІТЛИЙ */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px 4px;
        z-index: 1000;
    }
    
    .mobile-toggle span {
        display: block;
        width: 28px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: var(--gold);
    }
    
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: var(--gold);
    }
    
    @keyframes mobileMenuOpen {
        0% { opacity: 0; transform: scale(0.98); }
        100% { opacity: 1; transform: scale(1); }
    }
    
    /* HERO - СВІТЛИЙ */
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-stat .stat-number {
        font-size: 26px;
    }
    
    .hero-card-inner img {
        height: 280px;
    }
    
    .hero-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .hero-play-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-price-badge {
        top: 12px;
        right: 12px;
        padding: 10px 14px;
        min-width: 80px;
    }
    
    .hero-price-badge .price-value {
        font-size: 20px;
    }
    
    .hero-features {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-feature {
        font-size: 13px;
    }
    
    /* BENEFITS - СВІТЛИЙ */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    /* SERVICES - СВІТЛИЙ */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .materials-grid .service-card-image {
        min-height: 100px;
    }
    
    .material-tag {
        font-size: 18px;
    }
    
    /* WHY CHOOSE - СВІТЛИЙ */
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .why-item {
        padding: 18px 20px;
    }
    
    .why-item-full {
        grid-column: span 1;
    }
    
    /* PORTFOLIO - СВІТЛИЙ */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }
    
    .portfolio-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .portfolio-overlay h3 {
        font-size: 18px;
    }
    
    .portfolio-grid-bg {
        display: none;
    }
    
    /* EXCELLENCE - СВІТЛИЙ */
    .excellence-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .excellence-particles {
        display: none;
    }
    
    /* PROCESS MODERN - СВІТЛИЙ */
    .process-modern-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px;
    }
    
    .process-timeline {
        padding-left: 30px;
    }
    
    .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-left: -22px;
    }
    
    /* TESTIMONIALS - СВІТЛИЙ */
    .testimonials-slider {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    /* PRICING - СВІТЛИЙ */
    .pricing-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px;
    }
    
    .pricing-range h4 {
        font-size: 18px;
    }
    
    .pricing-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .pricing-premium-card.featured {
        transform: scale(1);
    }
    
    .pricing-premium-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-premium-notes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .shape {
        opacity: 0.02;
    }
    
    .tshape {
        opacity: 0.02;
    }
    
    /* CTA - СВІТЛИЙ */
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .cta-features {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* FAQ - СВІТЛИЙ */
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }
    
    /* FOOTER - СВІТЛИЙ */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    /* SECTION TITLES */
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* ============================================ */
/* 768px - 480px */
/* ============================================ */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header-logo .logo-text {
        font-size: 16px;
    }
    
    .header-logo .logo-icon {
        font-size: 18px;
    }
    
    .header-cta .btn-gold {
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .main-nav {
        padding: 70px 16px 20px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 12px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-stat {
        text-align: center;
        min-width: 80px;
    }
    
    .hero-stat .stat-number {
        font-size: 22px;
    }
    
    .hero-stat .stat-label {
        font-size: 11px;
    }
    
    .hero-price-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        min-width: 70px;
    }
    
    .hero-price-badge .price-value {
        font-size: 18px;
    }
    
    .hero-price-badge .price-label {
        font-size: 9px;
    }
    
    .hero-price-badge .price-desc {
        font-size: 9px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .hero-breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-breadcrumb .sep {
        margin: 0 4px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-card h3 {
        font-size: 17px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .materials-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px;
    }
    
    .material-price {
        font-size: 16px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .why-item {
        padding: 18px 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .portfolio-item-large {
        grid-column: span 1;
    }
    
    .portfolio-tags {
        gap: 4px;
    }
    
    .portfolio-tags span {
        font-size: 10px;
        padding: 1px 8px;
    }
    
    .excellence-grid {
        grid-template-columns: 1fr;
    }
    
    .process-modern-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .process-grid {
        grid-template-columns: 1fr !important;
    }
    
    .process-step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .process-step-item .step-number {
        font-size: 16px;
    }
    
    .process-details li {
        font-size: 12px;
    }
    
    .specs-timeline .process-step {
        padding: 12px 0;
    }
    
    .spec-card ul li {
        font-size: 12px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .btn-gold,
    .btn-outline {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-feature {
        font-size: 13px;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-details {
        gap: 6px;
    }
    
    .pricing-details span {
        font-size: 11px;
    }
    
    .pricing-notes {
        padding: 16px 18px;
    }
    
    .pricing-notes p {
        font-size: 13px;
    }
    
    .pricing-premium-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-premium {
        padding: 60px 0;
    }
    
    .pricing-premium-price .amount {
        font-size: 32px;
    }
    
    .pricing-premium-notes {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }
    
    .faq-answer p {
        font-size: 13px;
        padding: 0 18px 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-col ul a {
        font-size: 13px;
    }
    
    .footer-map iframe {
        height: 150px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }
    
    .trust-item {
        padding: 12px 16px;
    }
    
    .trust-item strong {
        font-size: 13px;
    }
    
    .trust-item span {
        font-size: 11px;
    }
    
    .mega-benefits {
        grid-template-columns: 1fr !important;
        gap: 6px;
    }
    
    .promo-image-wrapper {
        height: 80px;
    }
    
    .promo-image-content h4 {
        font-size: 14px;
    }
    
    .promo-phone {
        font-size: 14px;
    }
    
    .portfolio-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-card-content h3 {
        font-size: 18px;
    }
    
    .materials-note {
        padding: 14px 16px;
    }
    
    .materials-note p {
        font-size: 13px;
    }
    
    .benefits-bg,
    .services-bg,
    .why-bg,
    .process-bg,
    .testimonials-bg,
    .cta-bg,
    .faq-bg {
        display: none;
    }
    
    .benefits-section::before,
    .services-preview::before,
    .why-choose-us::before,
    .portfolio-section::before,
    .excellence-section::before,
    .process-modern::before,
    .testimonials-section::before,
    .faq-section::before,
    .cta-section::before {
        opacity: 0.5;
    }
}

/* ============================================ */
/* 480px and below */
/* ============================================ */
@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
    
    .header-logo .logo-text {
        font-size: 14px;
    }
    
    .header-logo .logo-icon {
        font-size: 16px;
    }
    
    .header-cta .btn-gold {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 6px;
    }
    
    .mobile-toggle span {
        width: 24px;
        height: 2px;
    }
    
    .main-nav {
        padding: 60px 12px 16px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 10px 10px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-play-btn {
        width: 48px;
        height: 48px;
    }
    
    .hero-play-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .service-card-image {
        height: 160px;
    }
    
    .service-card-content {
        padding: 18px 16px 20px;
    }
    
    .service-card-content h3 {
        font-size: 17px;
    }
    
    .materials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .material-tag {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .benefit-card {
        padding: 18px 16px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 18px 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .process-step {
        padding: 12px 0;
    }
    
    .process-step-content h4 {
        font-size: 16px;
    }
    
    .process-step-content p {
        font-size: 13px;
    }
    
    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .faq-answer p {
        font-size: 12px;
        padding: 0 16px 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .promo-image-content h4 {
        font-size: 13px;
    }
    
    .promo-phone {
        font-size: 13px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-price-badge {
        top: 8px;
        right: 8px;
        padding: 6px 10px;
        min-width: 60px;
    }
    
    .hero-price-badge .price-value {
        font-size: 16px;
    }
    
    .hero-features {
        gap: 4px;
    }
    
    .hero-feature {
        font-size: 12px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .pricing-range h4 {
        font-size: 16px;
    }
    
    .pricing-details span {
        font-size: 10px;
    }
    
    .pricing-notes {
        padding: 14px 16px;
    }
    
    .pricing-notes p {
        font-size: 12px;
    }
    
    .excellence-card {
        padding: 24px 16px;
    }
    
    .excellence-card h3 {
        font-size: 16px;
    }
    
    .excellence-card ul li {
        font-size: 12px;
    }
    
    .process-modern-card {
        padding: 20px 16px;
    }
    
    .process-modern-card h3 {
        font-size: 15px;
    }
    
    .process-modern-card p {
        font-size: 12px;
    }
    
    .btn-full {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* ============================================ */
/* LANDSCAPE PHONES */
/* ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .main-nav {
        padding: 60px 16px 16px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .mega-column-header {
        padding: 6px 0;
    }
    
    .mega-service-list li a {
        padding: 4px 8px;
        min-height: 28px;
    }
    
    .mega-service-list .service-name {
        font-size: 12px;
    }
    
    .mega-service-list .service-desc {
        font-size: 10px;
    }
    
    .has-dropdown .dropdown-menu li a {
        font-size: 13px;
        padding: 6px 12px 6px 28px;
        min-height: 32px;
    }
    
    .mega-benefits {
        grid-template-columns: 1fr 1fr !important;
        gap: 4px;
        padding: 8px 0 0;
        margin-top: 8px;
    }
    
    .hero-section {
        padding: 80px 0 30px;
        min-height: auto;
    }
    
    
    .promo-image-wrapper {
        height: 60px;
        max-height: 60px;
    }
    
    .promo-image-content {
        padding: 8px 14px 12px;
    }
    
    .promo-image-content h4 {
        font-size: 13px;
        margin: 0 0 6px;
    }
    
    .promo-contact {
        padding: 8px 12px;
    }
    
    .promo-phone {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 28px;
    }
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */
@media print {
    .main-header,
    .hero-scroll-indicator,
    .mobile-toggle,
    .footer-map,
    .hero-canvas,
    .hero-gradient-overlay,
    .benefits-bg,
    .services-bg,
    .why-bg,
    .portfolio-bg,
    .excellence-bg,
    .process-bg,
    .testimonials-bg,
    .cta-bg,
    .faq-bg {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto !important;
        padding: 40px 0 !important;
        background: #fff !important;
    }
    
    .hero-title {
        color: #000 !important;
    }
    
    .hero-title-gold {
        color: #C89A42 !important;
        -webkit-text-fill-color: #C89A42 !important;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
    }
    
    .section-title {
        color: #000 !important;
    }
    
    .section-title .gold {
        color: #C89A42 !important;
    }
    
    .card,
    .benefit-card,
    .service-card,
    .why-item,
    .testimonial-card {
        background: #f5f5f5 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .btn-gold,
    .btn-outline,
    .btn-outline-gold {
        display: none !important;
    }
    
    .hero-price-badge {
        border: 1px solid #ddd !important;
        background: #f5f5f5 !important;
    }
    
    .hero-price-badge .price-value {
        color: #C89A42 !important;
    }
}

/* ============================================ */
/* REDUCED MOTION */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-canvas {
        opacity: 0.2;
        display: none;
    }
    
    .hero-gradient-overlay {
        background: rgba(248, 246, 243, 0.9);
    }
    
    .benefit-card,
    .service-card,
    .why-item,
    .testimonial-card {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .benefit-card.visible,
    .service-card.visible,
    .why-item.visible,
    .testimonial-card.visible {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .shape,
    .tshape,
    .excellence-particles span,
    .portfolio-grid-bg span {
        animation: none !important;
    }
    
    .hero-badge .badge-dot {
        animation: none !important;
    }
    
    .hero-scroll-indicator {
        animation: none !important;
    }
}