/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a3a52 0%, #0d1f2d 100%);
        padding: 1rem;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .navbar-content {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1 0 100%;
        margin-bottom: 0.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        height: 400px;
    }

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

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

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

    .services h2,
    .booking h2,
    .why-choose-us h2,
    .contact h2,
    .about h2 {
        font-size: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

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

    .booking-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .hero {
        height: 300px;
    }

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

    .hero p {
        font-size: 1rem;
    }

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

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .services,
    .booking,
    .about,
    .why-choose-us,
    .contact {
        padding: 3rem 0;
    }

    .services h2,
    .booking h2,
    .why-choose-us h2,
    .contact h2,
    .about h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

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

    .service-features li {
        font-size: 0.9rem;
    }

    .booking-form {
        padding: 1rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.6rem;
    }

    .submit-button {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

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

    .contact-info {
        gap: 1.5rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    .values-list li,
    .service-features li {
        font-size: 0.9rem;
    }

    .checkbox {
        font-size: 0.85rem;
    }

    .checkbox input {
        width: 16px;
        height: 16px;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .hero {
        height: 250px;
    }

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

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

    .services h2,
    .booking h2,
    .why-choose-us h2,
    .contact h2,
    .about h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
    }

    .booking-form {
        padding: 0.75rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: 300px;
    }

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

    .hero p {
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .menu-toggle,
    .cta-button {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* High DPI screens */
@media (min-resolution: 2dppx) {
    .service-card,
    .feature,
    .booking-form {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }

    .booking-form {
        background: rgba(26, 26, 26, 0.95);
        color: #e0e0e0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #2a2a2a;
        color: #e0e0e0;
        border-color: #444;
    }

    .service-card {
        background: #2a2a2a;
        color: #e0e0e0;
    }

    .service-card p {
        color: #b0b0b0;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
