/*
 * responsive.css - Luxury Gold/Dark Theme Responsive Styles
 * Comprehensive breakpoints for all components
 * =========================================================
 */

/* =============================================
   ACCESSIBILITY & MOTION PREFERENCES
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slider,
    .testimonials-carousel,
    .preloader,
    .loading-screen {
        animation: none !important;
    }
}

/* High DPI font smoothing */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .logo-svg,
    .logo img {
        -webkit-font-smoothing: antialiased;
    }
}


/* =============================================
   LARGE DESKTOP (min-width: 1450px)
   ============================================= */

@media (min-width: 1450px) {
    .container {
        max-width: 1380px;
    }

    .container-wide {
        max-width: 1560px;
    }

    .hero-title {
        font-size: 64px;
    }

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

    .section-title {
        font-size: 2.8rem;
    }

    .service-intro-title {
        font-size: 48px;
    }

    .services-grid {
        gap: 30px;
    }

    .greeting-title {
        font-size: 3rem;
    }

    .footer-grid {
        gap: 48px;
    }
}


/* =============================================
   DESKTOP / TABLET TRANSITION (max-width: 1450px)
   ============================================= */

@media (max-width: 1450px) {
    /* Hide horizontal nav, show hamburger */
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Adjust header CTA buttons */
    .header-cta-blog {
        display: none;
    }

    .header-cta-phone {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Keep old sidebar toggle hidden if present */
    .sidebar-toggle {
        display: none;
    }

    /* Also handle the old nav system */
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-phone {
        display: none;
    }

    .container {
        max-width: 100%;
    }
}


/* =============================================
   TABLET (max-width: 1024px)
   ============================================= */

@media (max-width: 1024px) {
    :root {
        --header-height: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .container-wide {
        padding: 0 20px;
    }

    /* --- Header --- */
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-phone,
    .header-cta-blog {
        display: none;
    }

    .sidebar-toggle {
        display: none;
    }

    /* --- Hero --- */
    .hero,
    .hero-slider {
        height: 650px;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-slide-content {
        padding: 0 40px;
    }

    .hero-nav {
        bottom: 24px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* Legacy hero banner */
    .hero-banner-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-box {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* --- Service Intro --- */
    .service-intro-title {
        font-size: 36px;
    }

    .service-intro-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    /* --- Service Panels (2x2 grid) --- */
    .services-panels {
        display: flex;
        flex-wrap: wrap;
    }

    .service-panel {
        width: 50%;
        flex: 0 0 50%;
    }

    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* --- Contact --- */
    .contact-actions {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* --- Blog & Gallery --- */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    /* --- Service Panels --- */
    .services-panels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-panel { height: 450px; }
    .service-intro-stats { grid-template-columns: repeat(2, 1fr); }

    /* --- Contact Full --- */
    .contact-full-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-cta-inner { flex-direction: column; text-align: center; }

    /* --- Greeting --- */
    .greeting {
        height: auto;
        min-height: 500px;
        background-attachment: scroll;
    }

    .greeting-title {
        font-size: 2.2rem;
    }

    .greeting-desc {
        font-size: 1rem;
    }

    /* --- Testimonials --- */
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-grid::before {
        display: none;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* --- Other Grids --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .about-intro {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    /* --- Event Cards --- */
    .event-card {
        grid-template-columns: 180px 1fr;
    }

    /* --- Feature Service --- */
    .feature-service {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-service:nth-child(even) {
        direction: ltr;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* --- CTA --- */
    .cta-section h2,
    .cta-banner h2 {
        font-size: 2rem;
    }

    /* --- Content Cards --- */
    .content-card {
        padding: 30px;
    }

    .greeting-card {
        padding: 36px;
    }

    /* --- Blog Detail --- */
    .blog-detail-title {
        font-size: 1.6rem;
    }

    /* --- Timeline --- */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    /* --- Career Cards --- */
    .career-card {
        padding: 24px;
    }

    /* --- Quick Buttons --- */
    .quick-btns {
        gap: 8px;
    }

    .quick-btn {
        width: 50px;
        height: 50px;
    }
}


/* =============================================
   MOBILE LARGE (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* --- Header --- */
    .header-inner {
        padding: 0 16px;
    }

    .header-cta-phone {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .header-cta-blog {
        display: none;
    }

    /* --- Hero --- */
    .hero,
    .hero-slider {
        height: 550px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-slide-content {
        padding: 0 24px;
        max-width: 100%;
    }

    .hero-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .hero-nav {
        bottom: 16px;
        gap: 8px;
    }

    /* Legacy hero banner */
    .hero-banner {
        padding-bottom: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats-grid {
        gap: 16px;
    }

    .hero-stat .stat-number {
        font-size: 2rem;
    }

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-desc {
        font-size: 1rem;
    }

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

    /* --- Service Intro --- */
    .service-intro {
        padding: 60px 0;
    }

    .service-intro-title {
        font-size: 32px;
    }

    .service-intro-desc {
        font-size: 0.95rem;
    }

    /* --- Service Panels (1 column) --- */
    .services-panels-grid {
        grid-template-columns: 1fr;
    }
    .service-panel { height: 380px; }
    .service-panel-btn { opacity: 1; transform: translateY(0); }
    .hero-nav-prev, .hero-nav-next { display: none; }
    .service-intro-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-full { padding: 80px 0 60px; }
    .contact-cta-banner { padding: 35px 25px; }
    .greeting { height: 600px; background-attachment: scroll; }
    .portfolio-preview { padding: 80px 0 60px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-preview-section { padding: 80px 0 60px; }
    .services-panels {
        flex-direction: column;
    }

    .service-panel {
        width: 100%;
        flex: 0 0 100%;
        height: 400px;
    }

    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* --- Contact --- */
    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-action-item {
        padding: 24px;
    }

    .contact-full {
        padding: 60px 0;
    }

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

    /* --- CTA Banner (stack vertically) --- */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 24px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    /* --- Blog Grid --- */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-body {
        padding: 20px;
    }

    /* --- Gallery Grid (stays 2 col on tablet/mobile large) --- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* --- Portfolio --- */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* --- Greeting --- */
    .greeting {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .greeting-title {
        font-size: 1.8rem;
    }

    .greeting-desc {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .greeting-card {
        padding: 28px 20px;
    }

    .greeting-quote {
        font-size: 1.1rem;
    }

    /* --- Testimonials (1 column) --- */
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-card::before {
        font-size: 3rem;
        left: 16px;
    }

    /* --- Process Grid (1 column) --- */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- All remaining grids: 1 column --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* --- Footer (stack columns) --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer {
        padding: 48px 0 24px;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 90px 0 36px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    /* --- Content Cards --- */
    .content-card {
        padding: 22px;
    }

    .content-card h2 {
        font-size: 1.4rem;
    }

    /* --- Events --- */
    .event-card {
        grid-template-columns: 1fr;
    }

    .event-image {
        min-height: 150px;
    }

    /* --- Careers --- */
    .career-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .career-info {
        flex-direction: column;
        gap: 8px;
    }

    .career-card {
        padding: 20px;
    }

    /* --- Blog Detail --- */
    .blog-detail-title {
        font-size: 1.4rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 8px;
    }

    /* --- Quick / Floating Buttons --- */
    .quick-btns {
        bottom: 16px;
        right: 16px;
        gap: 6px;
    }

    .quick-btn {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    /* --- Buttons --- */
    .btn-gold,
    .btn-gold-outline,
    .btn-white,
    .btn-dark {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    /* --- Mobile Nav --- */
    .mobile-nav > ul > li > a,
    .mobile-nav .mobile-sub-toggle {
        font-size: 1.2rem;
        padding: 10px 14px;
    }

    /* Sidebar full-width on mobile */
    .sidebar-nav {
        width: 100%;
    }

    .mobile-nav-overlay {
        padding: 20px;
    }

    /* --- Tables --- */
    .styled-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* --- Map --- */
    .map-container {
        height: 280px;
    }

    /* --- FAQ --- */
    .faq-item {
        margin-bottom: 8px;
    }

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

    .faq-answer-inner {
        padding: 0 16px 16px;
    }

    /* --- Feature Service --- */
    .feature-service {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* =============================================
   MOBILE SMALL (max-width: 480px)
   ============================================= */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .container-wide {
        padding: 0 16px;
    }

    /* --- Header --- */
    .header,
    .site-header {
        height: 64px;
    }

    .header-inner {
        padding: 0 12px;
        height: 64px;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo img {
        max-height: 30px;
    }

    .logo-the {
        font-size: 0.55rem;
    }

    .logo-name {
        font-size: 1rem;
    }

    .header-cta,
    .header-cta-phone {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    /* --- Hero --- */
    .hero,
    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

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

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-slide-content {
        padding: 0 16px;
    }

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

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

    /* Legacy hero banner */
    .hero-banner {
        padding-bottom: 50px;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-stat {
        padding: 14px;
    }

    .hero-stat .stat-number {
        font-size: 1.6rem;
    }

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

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

    /* --- Service Intro --- */
    .service-intro-title {
        font-size: 28px;
    }

    .service-intro-desc {
        font-size: 0.9rem;
    }

    /* --- Service Panel --- */
    .service-panel {
        height: 350px;
    }

    /* --- Gallery (2 columns, small gap) --- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .gallery-item {
        border-radius: 4px;
    }

    .gallery-overlay {
        padding: 12px 8px 8px;
    }

    .gallery-overlay h4 {
        font-size: 0.8rem;
    }

    /* --- Service Card --- */
    .service-card-body {
        padding: 18px;
    }

    .service-card-image {
        height: 160px;
    }

    /* --- Quick / Floating Buttons (smaller) --- */
    .quick-btns {
        bottom: 12px;
        right: 12px;
        gap: 4px;
    }

    .quick-btn {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }

    .floating-buttons {
        bottom: 12px;
        right: 12px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }

    /* --- Stats --- */
    .stats-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* --- Greeting --- */
    .greeting {
        padding: 50px 0;
    }

    .greeting-title {
        font-size: 1.5rem;
    }

    .greeting-desc {
        font-size: 0.9rem;
    }

    .greeting-card {
        padding: 22px 14px;
        border-radius: 8px;
    }

    .greeting-quote {
        font-size: 1rem;
        padding: 14px;
    }

    .greeting-signature .name {
        font-size: 1.1rem;
    }

    /* --- Testimonial --- */
    .testimonial-card {
        padding: 22px 16px;
    }

    .testimonial-card::before {
        font-size: 2.5rem;
        left: 12px;
    }

    /* --- Process --- */
    .process-step {
        padding: 20px;
    }

    .process-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    /* --- Contact --- */
    .contact-action-item {
        padding: 20px 16px;
    }

    .contact-full {
        padding: 50px 0;
    }

    /* --- CTA Banner --- */
    .cta-banner {
        padding: 32px 16px;
        border-radius: 8px;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 80px 0 28px;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .breadcrumb {
        font-size: 0.75rem !important;
    }

    /* --- Content Card --- */
    .content-card {
        padding: 18px 14px;
        border-radius: 8px;
    }

    .content-card h2 {
        font-size: 1.25rem;
    }

    /* --- Pricing --- */
    .pricing-card {
        padding: 28px 18px;
    }

    .pricing-price {
        font-size: 2rem;
    }

    /* --- FAQ --- */
    .faq-question {
        padding: 14px;
        font-size: 0.9rem;
    }

    .faq-answer-inner {
        padding: 0 14px 14px;
    }

    /* --- Blog Card --- */
    .blog-card-body {
        padding: 14px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    /* --- Blog Detail --- */
    .blog-detail-title {
        font-size: 1.3rem;
    }

    /* --- Footer --- */
    .footer-top {
        padding: 44px 0 36px;
    }

    .footer-col h3 {
        font-size: 0.95rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    /* --- CTA Section --- */
    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    /* --- Event Cards --- */
    .event-card {
        border-radius: 8px;
    }

    /* --- Career Cards --- */
    .career-card {
        padding: 16px;
        border-radius: 8px;
    }

    /* --- Mobile Nav --- */
    .mobile-nav > ul > li > a,
    .mobile-nav .mobile-sub-toggle {
        font-size: 1.1rem;
        padding: 8px 12px;
    }

    .mobile-nav-contact {
        margin-top: 20px;
        padding-top: 16px;
    }

    /* --- Buttons --- */
    .btn-gold,
    .btn-gold-outline,
    .btn-white,
    .btn-dark {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    /* --- Map --- */
    .map-container {
        height: 240px;
    }
}


/* =============================================
   VERY SMALL SCREENS (max-width: 360px)
   ============================================= */

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    /* --- Hero --- */
    .hero,
    .hero-slider {
        height: 450px;
    }

    .hero-title {
        font-size: 22px;
    }

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

    .hero-desc {
        font-size: 0.85rem;
    }

    .hero-slide-content {
        padding: 0 12px;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.3rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    /* --- Gallery (1 column) --- */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* --- Service Panel --- */
    .service-panel {
        height: 320px;
    }

    /* --- Greeting --- */
    .greeting {
        padding: 40px 0;
    }

    .greeting-title {
        font-size: 1.3rem;
    }

    .greeting-desc {
        font-size: 0.85rem;
    }

    .greeting-card {
        padding: 18px 12px;
    }

    .greeting-quote {
        font-size: 0.9rem;
        padding: 10px;
    }

    /* --- Contact --- */
    .contact-action-item {
        padding: 16px 12px;
    }

    /* --- CTA Banner --- */
    .cta-banner {
        padding: 24px 12px;
    }

    .cta-banner h2 {
        font-size: 1.2rem;
    }

    /* --- Testimonial --- */
    .testimonial-card {
        padding: 18px 12px;
    }

    /* --- Process --- */
    .process-step {
        padding: 16px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* --- Pricing --- */
    .pricing-card {
        padding: 22px 14px;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    /* --- Footer --- */
    .footer-grid {
        gap: 20px;
    }

    .footer-col h3 {
        font-size: 0.9rem;
    }

    /* --- Page Header --- */
    .page-header {
        padding: 72px 0 24px;
    }

    .page-header h1 {
        font-size: 1.2rem;
    }

    /* --- Header --- */
    .header-inner {
        padding: 0 10px;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
    }

    .logo-name {
        font-size: 0.9rem;
    }

    .header-cta,
    .header-cta-phone {
        padding: 5px 10px;
        font-size: 0.72rem;
    }

    /* --- Quick / Floating Buttons --- */
    .quick-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    /* --- Buttons --- */
    .btn-gold,
    .btn-gold-outline,
    .btn-white,
    .btn-dark {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    /* --- Content Card --- */
    .content-card {
        padding: 14px 10px;
    }

    /* --- Blog Card --- */
    .blog-card-body {
        padding: 12px;
    }

    /* --- Map --- */
    .map-container {
        height: 200px;
    }
}


/* =============================================
   LANDSCAPE MOBILE
   ============================================= */

@media (max-height: 500px) and (orientation: landscape) {
    .hero,
    .hero-slider {
        height: 100vh;
        min-height: 320px;
    }

    .hero-banner {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-desc {
        display: none;
    }

    .hero-slide-content {
        padding: 0 24px;
    }

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


/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
    /* Hide non-essential elements */
    .header,
    .site-header,
    .nav,
    .main-nav,
    .menu-toggle,
    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay,
    .sidebar-nav,
    .sidebar-overlay,
    .sidebar-toggle,
    .floating-buttons,
    .quick-btns,
    .quick-btn,
    .float-btn,
    .hero-nav,
    .hero-btn,
    .preloader,
    .loading-screen,
    .cookie-banner,
    .back-to-top {
        display: none !important;
    }

    /* Reset body for print */
    body {
        color: #000 !important;
        background: #fff !important;
        font-size: 12pt;
        line-height: 1.5;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Remove dark backgrounds */
    .section-dark,
    .footer,
    .site-footer,
    .hero,
    .hero-banner,
    .hero-slider {
        background: #fff !important;
        color: #000 !important;
    }

    .section-dark .section-title,
    .section-dark .section-desc {
        color: #000 !important;
    }

    /* Reset main content */
    .site-main {
        padding-top: 0;
    }

    /* Sections */
    .section {
        padding: 20px 0;
        break-inside: avoid;
    }

    /* Links */
    a {
        color: #000 !important;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    .nav a[href]::after,
    .footer a[href]::after,
    .btn-gold[href]::after,
    .btn-dark[href]::after {
        content: none;
    }

    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Grids: simplify for print */
    .services-grid,
    .blog-grid,
    .gallery-grid,
    .process-grid,
    .pricing-grid,
    .footer-grid,
    .stats-grid,
    .testimonials-carousel,
    .contact-actions {
        display: block !important;
    }

    .service-card,
    .blog-card,
    .gallery-item,
    .process-step,
    .pricing-card,
    .testimonial-card,
    .contact-action-item {
        break-inside: avoid;
        margin-bottom: 16px;
    }

    /* Footer */
    .site-footer,
    .footer {
        background: #fff !important;
        color: #333 !important;
        border-top: 2px solid #333;
    }

    /* Remove shadows and animations */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }

    /* Headings */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000 !important;
    }

    /* Service panels: print friendly */
    .service-panel {
        height: auto !important;
        page-break-inside: avoid;
    }

    .services-panels {
        display: block !important;
    }
}
