:root {
    --primary-dark: #0d1b2a;
    --primary-light: #1b4965;
    --accent-sky: #62b6cb;
    --accent-orange: #f39c12;
    --light-bg: #ffffff;
    --dark-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 700;
}

/* ===== Navbar Styles ===== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(98, 182, 203, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    padding: 10px 0;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-logo {
    height: 70px;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 25px 18px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    padding: 15px 18px !important;
}

.navbar-nav .nav-link .nav-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-icon {
    transform: translateY(-3px);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-orange));
    transition: all 0.4s ease;
    transform: translateX(50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-sky) !important;
    background: linear-gradient(180deg, transparent 0%, rgba(98, 182, 203, 0.05) 100%);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white !important;
    box-shadow: 0 4px 15px rgba(98, 182, 203, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
}

.logout-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
}

.admin-btn {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    color: white !important;
}

/* ===== Page Header ===== */
.page-header-modern {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(98, 182, 203, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(243, 156, 18, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.page-header-modern .container {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(98, 182, 203, 0.2);
    border: 2px solid rgba(98, 182, 203, 0.5);
    border-radius: 50px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== Contact Info Cards ===== */
.contact-info-cards {
    padding: 80px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.info-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-sky);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card-modern:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card-icon i {
    font-size: 2rem;
    color: white;
}

.info-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.info-card-modern p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-card-modern a {
    color: var(--accent-sky);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-modern a:hover {
    color: var(--accent-orange);
}

/* ===== Contact Main Section ===== */
.contact-main-section {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(98, 182, 203, 0.1);
    border: 2px solid rgba(98, 182, 203, 0.3);
    border-radius: 50px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
}

/* ===== Contact Form Modern ===== */
.contact-form-modern {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modern-form {
    margin-top: 30px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--accent-sky);
    box-shadow: 0 0 0 4px rgba(98, 182, 203, 0.1);
}

.form-control-modern::placeholder {
    color: #999;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-modern {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(98, 182, 203, 0.3);
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(98, 182, 203, 0.4);
}

/* ===== Contact Methods Modern ===== */
.contact-methods-modern {
    position: sticky;
    top: 100px;
}

.contact-method-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.method-icon.phone {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
}

.method-icon.email {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
}

.method-icon.emergency {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.method-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.method-link {
    display: block;
    color: var(--accent-sky);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: var(--accent-orange);
    padding-right: 5px;
}

.response-time-alert {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 15px;
    border-right: 4px solid var(--accent-sky);
    margin-top: 30px;
}

.response-time-alert i {
    font-size: 1.5rem;
    color: var(--accent-sky);
    flex-shrink: 0;
}

.response-time-alert strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.response-time-alert p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.footer h5 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
    bottom: 0;
}

[dir="rtl"] .footer h5:after {
    right: 0;
}

[dir="ltr"] .footer h5:after {
    left: 0;
}

.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}

/* ===== Responsive Design ===== */

/* ========================================
   RESPONSIVE MEDIA QUERIES - CONTACT PAGE
   ======================================== */

/* Nest Hub Max (1280x800) */
@media (min-width: 1200px) and (max-width: 1366px) and (max-height: 850px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 28px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.55rem;
        padding: 4px 4px !important;
    }

    .navbar-nav .nav-link .nav-icon {
        font-size: 0.8rem;
    }

    .nav-action-btn {
        padding: 2px 5px;
        font-size: 0.55rem;
    }

    .nav-action-btn i {
        font-size: 0.8rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 5px;
    }

    /* Page Header */
    .page-header-modern {
        padding: 80px 0 60px;
        min-height: 50vh;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1rem;
    }

    /* Contact Info Cards */
    .contact-info-cards {
        padding: 50px 0;
        margin-top: -40px;
    }

    .info-card-modern {
        padding: 30px 20px;
    }

    .info-card-icon {
        width: 65px;
        height: 65px;
    }

    .info-card-icon i {
        font-size: 1.6rem;
    }

    .info-card-modern h4 {
        font-size: 1.1rem;
    }

    .info-card-modern p {
        font-size: 0.85rem;
    }

    /* Contact Main Section */
    .contact-main-section {
        padding: 60px 0;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .contact-form-modern {
        padding: 35px 30px;
    }

    .form-group-modern label {
        font-size: 0.85rem;
    }

    .form-control-modern {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .btn-submit-modern {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .contact-method-card {
        padding: 20px;
        gap: 15px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
    }

    .method-icon i {
        font-size: 1.2rem;
    }

    .method-content h5 {
        font-size: 1rem;
    }

    .method-content p {
        font-size: 0.8rem;
    }

    .method-link {
        font-size: 0.85rem;
    }

    .response-time-alert {
        padding: 15px;
        gap: 12px;
    }

    .response-time-alert i {
        font-size: 1.2rem;
    }

    .response-time-alert p {
        font-size: 0.8rem;
    }
}

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 60px;
    }

    .navbar-brand {
        padding: 3px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.55rem;
        padding: 8px 8px !important;
    }

    .nav-action-btn {
        padding: 4px 5px;
        font-size: 0.75rem;
    }

    .navbar-actions {
        padding: 0 10px;
    }

    /* Page Content */
    .page-title {
        font-size: 3rem;
    }

    .section-title-modern {
        font-size: 2.5rem;
    }
}

/* iPad Pro & Tablets (768px - 991px) */
@media (max-width: 991px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 35px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.65rem;
        padding: 6px 6px !important;
    }

    .nav-action-btn {
        padding: 3px 6px;
        font-size: 0.65rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 6px;
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        padding: 15px 20px !important;
        border-radius: 10px;
        margin-bottom: 5px;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
        transform: translateX(-5px);
    }
    
    .navbar-collapse .navbar-actions {
        flex-direction: column;
        width: 100%;
        padding: 15px 0 0 0;
        gap: 10px;
        border-top: 2px solid rgba(98, 182, 203, 0.2);
        margin-top: 15px;
    }
    
    .navbar-collapse .nav-action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Page Header */
    .page-header-modern {
        padding: 110px 0 80px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.05rem;
    }

    /* Contact Info Cards */
    .contact-info-cards {
        padding: 60px 0;
    }

    .info-card-modern {
        padding: 35px 25px;
    }
    
    /* Contact Main Section */
    .section-title-modern {
        font-size: 2.2rem;
    }

    .contact-main-section {
        padding: 80px 0;
    }
    
    .contact-methods-modern {
        position: static;
        margin-top: 40px;
    }
}

/* Nest Hub & Landscape Tablets (768px - 1024px, height ≤ 900px) */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 900px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 5px 5px !important;
    }

    .nav-action-btn {
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 5px;
    }

    /* Page Header */
    .page-header-modern {
        padding: 70px 0 50px;
        min-height: 45vh;
    }

    .page-badge {
        padding: 6px 18px;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .page-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .page-description {
        font-size: 0.95rem;
    }

    /* Contact Info Cards */
    .contact-info-cards {
        padding: 45px 0;
        margin-top: -35px;
    }

    .info-card-modern {
        padding: 25px 20px;
    }

    .info-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .info-card-icon i {
        font-size: 1.5rem;
    }

    .info-card-modern h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .info-card-modern p {
        font-size: 0.8rem;
    }

    /* Contact Main Section */
    .contact-main-section {
        padding: 55px 0;
    }

    .section-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .section-title-modern {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .contact-form-modern {
        padding: 35px 30px;
    }

    .form-group-modern {
        margin-bottom: 18px;
    }

    .form-group-modern label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .form-control-modern {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    textarea.form-control-modern {
        min-height: 120px;
    }

    .btn-submit-modern {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .contact-method-card {
        padding: 18px;
        gap: 15px;
        margin-bottom: 15px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
    }

    .method-icon i {
        font-size: 1.2rem;
    }

    .method-content h5 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .method-content p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .method-link {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .response-time-alert {
        padding: 15px;
        gap: 12px;
        margin-top: 20px;
    }

    .response-time-alert i {
        font-size: 1.2rem;
    }

    .response-time-alert strong {
        font-size: 0.9rem;
    }

    .response-time-alert p {
        font-size: 0.8rem;
    }
}

/* Nest Hub (1024x600) */
@media (min-width: 1000px) and (max-width: 1100px) and (max-height: 650px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 30px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 5px 4px !important;
    }

    .nav-action-btn {
        padding: 2px 5px;
        font-size: 0.6rem;
    }

    .navbar-actions {
        padding: 0 6px;
        gap: 4px;
    }

    /* Page Header */
    .page-header-modern {
        padding: 60px 0 40px;
        min-height: 40vh;
    }

    .page-badge {
        padding: 5px 15px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .page-title {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .page-description {
        font-size: 0.85rem;
    }

    /* Contact Info Cards */
    .contact-info-cards {
        padding: 35px 0;
        margin-top: -30px;
    }

    .info-card-modern {
        padding: 20px 15px;
    }

    .info-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .info-card-icon i {
        font-size: 1.3rem;
    }

    .info-card-modern h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .info-card-modern p {
        font-size: 0.75rem;
    }

    /* Contact Main Section */
    .contact-main-section {
        padding: 45px 0;
    }

    .section-badge {
        padding: 5px 14px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .section-title-modern {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .section-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .contact-form-modern {
        padding: 30px 25px;
    }

    .form-group-modern {
        margin-bottom: 15px;
    }

    .form-group-modern label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .form-control-modern {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    textarea.form-control-modern {
        min-height: 100px;
    }

    .btn-submit-modern {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .contact-method-card {
        padding: 15px;
        gap: 12px;
        margin-bottom: 12px;
    }

    .method-icon {
        width: 45px;
        height: 45px;
    }

    .method-icon i {
        font-size: 1.1rem;
    }

    .method-content h5 {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }

    .method-content p {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .method-link {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .response-time-alert {
        padding: 12px;
        gap: 10px;
        margin-top: 15px;
    }

    .response-time-alert i {
        font-size: 1.1rem;
    }

    .response-time-alert strong {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .response-time-alert p {
        font-size: 0.75rem;
    }
}

/* Mobile & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    /* Navbar */
    .navbar-logo {
        height: 70px;
    }
    
    /* Page Header */
    .page-header-modern {
        padding: 100px 0 70px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    /* Contact Info Cards */
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .contact-info-cards {
        padding: 60px 0;
    }
    
    /* Contact Main Section */
    .contact-main-section {
        padding: 80px 0;
    }
    
    .contact-form-modern {
        padding: 40px 30px;
    }
    
    .contact-method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin: 0 auto;
    }

    .response-time-alert {
        flex-direction: column;
        text-align: center;
    }

    .response-time-alert i {
        margin: 0 auto;
    }
}

/* Mobile Phones (< 576px) */
@media (max-width: 575px) {
    /* Navbar */
    .navbar-logo {
        height: 60px;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 12px 15px !important;
    }

    .nav-action-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    /* Page Header */
    .page-header-modern {
        padding: 90px 0 60px;
    }

    .page-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-description {
        font-size: 0.95rem;
    }
    
    /* Contact Info Cards */
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .contact-form-modern {
        padding: 30px 20px;
    }
    
    .info-card-modern {
        padding: 30px 20px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .section-description {
        font-size: 0.95rem;
    }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 399px) {
    .page-title {
        font-size: 1.6rem;
    }

    .section-title-modern {
        font-size: 1.4rem;
    }

    .info-card-modern h4 {
        font-size: 1.1rem;
    }

    .contact-form-modern {
        padding: 25px 15px;
    }

    .form-control-modern {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .btn-submit-modern {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}


/* PUSHED NAVBAR TOGGLER GLOBALLY TO FIX ALL PAGES */
.navbar-toggler {
    border: 2px solid var(--accent-sky) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
}

.navbar-toggler:hover {
    background-color: rgba(98, 182, 203, 0.1) !important;
    border-color: var(--accent-orange) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(98, 182, 203, 0.25) !important;
    outline: none !important;
}

.navbar-toggler-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-image: none !important;
}

.navbar-toggler-icon i {
    color: var(--accent-sky) !important;
    font-size: 1.3rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.navbar-toggler:hover .navbar-toggler-icon i {
    color: var(--accent-orange) !important;
    transform: rotate(90deg) !important;
}
