/* Waiet Al Shamal - same approach as AirCondition project */
body {
    direction: rtl;
    text-align: right;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Skip link for accessibility & SEO (focus visible for keyboard users) */
.skip-link {
    position: absolute;
    top: -3rem;
    right: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: #0c5aa8;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0.5rem;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.navbar-waiet {
    background-color: #0c5aa8 !important;
}

/* Modern navbar */
.navbar-waiet-modern {
    position: relative;
    background: linear-gradient(135deg, #0c5aa8 0%, #0a8fd4 50%, #0891b2 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
}

.navbar-water-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    opacity: 0.8;
}

.navbar-waiet-modern .navbar-brand-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-waiet-modern .navbar-brand-modern:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.navbar-brand-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 1px 2px rgba(255,255,255,0.3));
}

.navbar-waiet-modern .navbar-brand,
.navbar-waiet-modern .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar-waiet-modern .nav-link:hover {
    background-color: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.navbar-waiet-modern .nav-item.active .nav-link {
    background-color: rgba(255,255,255,0.25);
    font-weight: 600;
}

.navbar-waiet-modern .navbar-nav-modern .nav-link {
    margin: 0 0.15rem;
}

.navbar-waiet-modern .navbar-toggler-modern {
    border-color: rgba(255,255,255,0.5);
    padding: 0.4rem 0.6rem;
}

.navbar-waiet-modern .navbar-toggler-modern .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-waiet .navbar-brand,
.navbar-waiet .nav-link {
    color: #fff !important;
}

.navbar-waiet .nav-link:hover {
    background-color: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #0c5aa8 0%, #0a8fd4 50%, #06b6d4 100%);
    color: #fff;
    padding: 4rem 1rem 8rem;
    overflow: hidden;
}

/* Water overlay effect */
.hero-water-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated water waves at bottom */
.hero-water-waves {
    display: none;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-water-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: water-drop 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255,255,255,0.3));
}

@keyframes water-drop {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .hero {
        padding: 3rem 1rem 6rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-water-icon {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 !important;
    }
}

.section {
    padding: 3rem 0;
}

.section-alt {
    background-color: #f5f7fb;
}

/* Nearest Waiet Section - Modernized */
.nearest-waiet-section {
    background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

/* Reduce motion for users/devices that prefer it (lighter scrolling) */
@media (prefers-reduced-motion: reduce) {
    .hero-wave,
    .hero-wave-2,
    .hero-water-icon,
    .btn-throb {
        animation: none !important;
    }
}

.nearest-waiet-intro {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

.nearest-waiet-card {
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.nearest-waiet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border-color: #bfdbfe;
}

.nearest-waiet-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 auto 1.25rem;
    background-color: #eff6ff;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nearest-waiet-card:hover .nearest-waiet-icon {
    transform: scale(1.1);
    background-color: #dbeafe;
}

.nearest-waiet-card .card-title {
    margin-bottom: 0.75rem;
}

.nearest-waiet-card .card-text {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Modern features & pricing sections */
.features-section {
    background: radial-gradient(circle at top left, #e0f2fe 0, #eef2ff 40%, #f9fafb 100%);
}

.features-intro {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
}

.feature-card {
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card .card-title,
.feature-card .card-text {
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.15);
    border-color: #bfdbfe;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 auto 1rem;
    background-color: #eff6ff;
}

.pricing-section {
    background-color: #f9fafb;
}

.pricing-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 2.25rem 1.75rem 2.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 0.25rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.45);
}

.pricing-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 0;
}

.pricing-amount {
    font-weight: 800;
    color: #0c5aa8;
}

.neighborhoods-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 2rem;
}

.neighborhoods-list li {
    break-inside: avoid;
    margin-bottom: 0.4rem;
    padding-right: 0.5rem;
}

@media (max-width: 576px) {
    .neighborhoods-list {
        column-count: 1;
    }
}

.cta-bar {
    background-color: #0c5aa8;
    color: #fff;
    padding: 2.5rem 1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.site-footer {
    position: relative;
    background-color: #6c757d;
    color: #fff;
    padding: 1.25rem 1rem 2.75rem;
    font-size: 0.9rem;
    overflow: hidden;
}

/* Wavy top edge for footer (bottom of page looks wavy, not straight) */
.site-footer::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path fill='%236c757d' d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,40 L1440,100 L0,100 Z'/></svg>");
}

.card {
    border: none;
    border-radius: 0.5rem;
}

.card-title {
    color: #0c5aa8;
}

/* Testimonial cards: light blue background + number icons */
.testimonial-card {
    background-color: #e8f4fc;
}

.testimonial-card .card-num-img {
    width: 3rem;
    height: auto;
    margin-bottom: 0.75rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 3rem 0;
    min-height: 50vh;
}

.page-content h1 {
    margin-bottom: 1.5rem;
}

/* Article + image section */
.article-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Water-themed backgrounds */
.article-section-water {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
}

.article-section-water-alt {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
}

.article-water-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.article-section .container {
    position: relative;
    z-index: 1;
}

/* Enhanced image wrapper with water effects */
.article-image-wrapper {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.25), 0 0 0 8px rgba(224, 242, 254, 0.5);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.3), 0 0 0 10px rgba(224, 242, 254, 0.6);
}

.article-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Water ring animation around image */
.article-water-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px solid rgba(14, 165, 233, 0.3);
    animation: water-ring-pulse 3s ease-in-out infinite;
    z-index: 1;
}

.article-water-ring::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.2);
    animation: water-ring-pulse 3s ease-in-out infinite 0.5s;
}

@keyframes water-ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.article-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0c5aa8;
    position: relative;
    padding-right: 1rem;
}

.article-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #0ea5e9, #3b82f6);
    border-radius: 2px;
}

.article-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    position: relative;
}

@media (max-width: 767.98px) {
    .article-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .article-water-ring {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .article-water-ring::before {
        top: -18px;
        left: -18px;
        right: -18px;
        bottom: -18px;
    }
    
    .water-drop {
        font-size: 1.2rem;
    }

    .article-title {
        text-align: center;
        padding-right: 0;
    }
    
    .article-title::after {
        display: none;
    }
    
    .article-water-icon {
        display: block;
        text-align: center;
    }

    .article-text {
        text-align: right;
    }
}

.btn-article-call {
    background: linear-gradient(135deg, #0c5aa8, #0ea5e9);
    border: none;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-article-call::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-article-call:hover::before {
    width: 300px;
    height: 300px;
}

.btn-article-call:hover,
.btn-article-call:focus {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.btn-article-call:active {
    background: linear-gradient(135deg, #0a4a8c, #0c5aa8);
    transform: translateY(0);
}

.btn-article-icon {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Light green buttons for "اتصل الآن" */
.btn-dark-blue,
.btn-dark-green {
    background-color: #37B34A;
    border-color: #37B34A;
    color: #fff;
}

.btn-dark-blue:hover,
.btn-dark-blue:focus,
.btn-dark-green:hover,
.btn-dark-green:focus {
    background-color: #2d9d3d;
    border-color: #2d9d3d;
    color: #fff;
}

.btn-dark-blue:active,
.btn-dark-green:active {
    background-color: #258b33;
    border-color: #258b33;
    color: #fff;
}

/* Make call & WhatsApp buttons visually identical in size (slightly smaller) */
.btn-dark-blue.btn-lg,
.btn-whatsapp.btn-lg,
.btn-article-call.btn-lg {
    padding: 0.45rem 1.25rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

/* WhatsApp button - WhatsApp brand green, icon + "ارسال طلب" */
.btn-whatsapp {
    background-color: #37B34A;
    border-color: #37B34A;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
    font-weight: 500;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #2d9d3d;
    border-color: #2d9d3d;
    color: #fff;
}

.btn-whatsapp:active {
    background-color: #258b33;
    border-color: #258b33;
    color: #fff;
}

.btn-whatsapp .wa-icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    object-fit: contain;
    vertical-align: middle;
}

/* Throbbing / pulsing effect for call & WhatsApp buttons */
@keyframes button-throb {
    0% {
        transform: scale(1);
        box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.18);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0.7rem 1.3rem rgba(0, 0, 0, 0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.18);
    }
}

.btn-throb {
    animation: button-throb 1.6s ease-in-out infinite;
}

.btn-throb:hover,
.btn-throb:focus {
    animation-play-state: paused;
}

/* Service areas section - cards layout */
.service-areas-section {
    background-color: #eef7ff;
}

.service-areas-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.service-areas-grid {
    max-width: 900px;
    margin: 0 auto;
}

.service-area-card {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #dbeafe;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.service-area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border-color: #93c5fd;
    background-color: #f8fafc;
}

.service-area-name {
    color: #111827;
    font-weight: 500;
}

.service-area-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-area-card:hover .service-area-icon {
    background-color: #bfdbfe;
    transform: scale(1.1);
}

.service-areas-note {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Modern Page Styles - About, Contact, Privacy */

/* Hero Sections */
.hero-about,
.hero-contact,
.hero-privacy {
    background: linear-gradient(135deg, #0c5aa8, #0a8fd4);
    color: #fff;
    padding: 4rem 1rem 3rem;
    text-align: center;
}

.hero-about-title,
.hero-contact-title,
.hero-privacy-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-about-subtitle,
.hero-contact-subtitle,
.hero-privacy-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* Modern Page Content */
.page-content-modern {
    padding: 4rem 0;
}

/* About Page Styles */
.about-content-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-bottom: 2rem;
}

.about-icon-wrapper {
    margin-bottom: 1.5rem;
}

.about-icon {
    font-size: 4rem;
    display: inline-block;
}

.about-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0c5aa8;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 1.25rem;
    text-align: right;
}

.about-feature-card {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.about-feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.about-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c5aa8;
    margin-bottom: 0.75rem;
}

.about-feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-intro {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.contact-card-phone {
    border-top: 4px solid #0c5aa8;
}

.contact-card-whatsapp {
    border-top: 4px solid #37B34A;
}

.contact-card-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.25rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-card-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0c5aa8;
    margin-bottom: 0.5rem;
    direction: ltr;
    text-align: center;
}

.contact-card-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-info-box {
    background: #f9fafb;
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    border: 1px solid #e5e7eb;
}

.contact-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0c5aa8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-label {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-text {
    font-size: 1rem;
    color: #4b5563;
}

/* Privacy Page Styles */
.privacy-content-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
    border: 1px solid #e5e7eb;
}

.privacy-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.privacy-icon {
    font-size: 4rem;
    display: inline-block;
}

.privacy-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0c5aa8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.privacy-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 1.25rem;
    text-align: right;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: right;
}

.privacy-list li {
    padding: 0.5rem 2rem 0.5rem 0;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
}

.privacy-list li::before {
    content: "✓";
    position: absolute;
    right: 0.5rem;
    color: #0c5aa8;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
}

.privacy-link {
    color: #0c5aa8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #0a4a8c;
    text-decoration: underline;
}

.privacy-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.privacy-update-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .hero-about-title,
    .hero-contact-title,
    .hero-privacy-title {
        font-size: 1.75rem;
    }

    .hero-about-subtitle,
    .hero-contact-subtitle,
    .hero-privacy-subtitle {
        font-size: 1rem;
    }

    .about-content-card,
    .privacy-content-card {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .about-text,
    .privacy-text {
        text-align: center;
    }

    .privacy-list {
        text-align: center;
    }

    .privacy-list li {
        text-align: right;
        padding-right: 1.5rem;
    }
}
