/* CSS Variables & Reset */
:root {
    /* Primary Colors */
    --color-primary: #3f5086;
    --color-primary-dark: #2d3a66;
    --color-primary-light: #5367a3;
    --color-primary-soft: rgba(63, 80, 134, 0.1);

    /* Accent & Neutral Colors */
    --color-accent: #e5e3d9;
    --color-accent-soft: rgba(229, 227, 217, 0.3);
    --color-text-main: #131416;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-white: #ffffff;
    --color-bg-light: #ffffff;
    --color-bg-alt: #fcfcfb;
    --color-bg-dark: #1a2138;

    /* Shadows & Borders */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-color: #e5e3d9;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body,
button,
input,
select,
textarea {
    font-family: 'Tajawal', sans-serif !important;
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 10rem;
    }
}

.section-padding {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 9rem 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary-soft);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background-color: var(--color-white);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 5rem 2rem 2rem 2rem;
        gap: 2rem;
        align-items: flex-start;
        justify-content: flex-start;
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 0;
        animation: slideInLeft 0.3s ease-out forwards;
    }

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

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        text-align: right;
        width: 100%;
        padding: 0.75rem 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        padding: 0;
        gap: 1.5rem;
        box-shadow: none;
        border: none;
        animation: none;
        z-index: auto;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav .btn {
    padding: 0.25rem 0.625rem;
    font-weight: 600;
}

.nav-link:hover {
    opacity: 0.8;
}

.mobile-menu-btn {
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1002;
}

/* Hide checkbox completely */
.mobile-menu-checkbox {
    display: none;
}

/* Show hamburger icon by default, hide close icon */
.mobile-menu-btn .hamburger-icon {
    display: block;
}

.mobile-menu-btn .close-icon {
    display: none;
}

/* When checkbox is checked, swap icons */
.mobile-menu-checkbox:checked~.header-inner .mobile-menu-btn .hamburger-icon {
    display: none;
}

.mobile-menu-checkbox:checked~.header-inner .mobile-menu-btn .close-icon {
    display: block;
}

/* Show menu when checkbox is checked */
.mobile-menu-checkbox:checked~.header-inner .nav {
    display: flex !important;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--color-accent-soft);
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%;
    height: 100%;
    background-color: rgba(229, 227, 217, 0.2);
    transform: skewX(-12deg) translateX(-50%);
    display: none;
}

@media (min-width: 1024px) {
    .hero-bg-decoration {
        display: block;
    }
}

.hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
    }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: right;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-white);
    border: 1px solid rgba(63, 80, 134, 0.1);
    border-radius: var(--radius-full);
    width: fit-content;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(63, 80, 134, 0.8);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(63, 80, 134, 0.7);
}

.avatar-group {
    display: flex;
    flex-direction: row-reverse;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-white);
    margin-left: -0.75rem;
    background-size: cover;
    background-position: center;
}

.hero-image-container {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-badge-floating {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
    animation: fadeInRight 0.8s ease-out forwards;
}

.hero-badge-floating h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
}

.hero-badge-floating p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    font-weight: 500;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 640px) {
    .hero-badge-floating {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .hero-badge-floating h3 {
        font-size: 0.975rem;
    }

    .hero-badge-floating p {
        font-size: 0.75rem;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.rating-card {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--color-primary);
    max-width: 200px;
    box-shadow: var(--shadow-md);
}

/* Sections General */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    text-align: right;
}

.section-header.centered {
    text-align: center;
    align-items: center;
}

.section-tag {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

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

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 42rem;
}

/* Grid Components */
.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Video Grid - keeps videos in same row */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .video-grid {
        gap: 1rem;
        /* Keep 3 columns here if space allows, or move to 2 if too tight. 1024 is wide enough for 3 */
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Service Card */
.service-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background-color: var(--color-white);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 80, 134, 0.3);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background-color: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.service-card .icon-box i {
    font-size: 24px;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Doctor Card */
.doctor-card {
    display: flex;
    flex-direction: column;
}

.doctor-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(63, 80, 134, 0.2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.doctor-info p {
    color: rgba(63, 80, 134, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Video Card Specific Styles */
.video-card-wrapper {
    aspect-ratio: 9/16;
}

.video-card-info {
    margin-top: 1rem;
}

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

/* About Section */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        flex-direction: row;
    }
}

.about-image-side {
    flex: 1;
    width: 100%;
    order: 2;
}

@media (min-width: 1024px) {
    .about-image-side {
        order: 2;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

.about-decoration {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 66%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .about-decoration {
        display: block;
    }
}

.about-text-side {
    flex: 1;
    text-align: right;
    order: 1;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem !important;
    color: var(--color-accent);
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.testimonial-user {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background-size: cover;
    background-position: center;
}

.user-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.user-role {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Call to Action */
.cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-inner {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-title {
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-text {
    color: var(--color-accent);
    opacity: 0.9;
    font-size: 1.125rem;
    max-width: 42rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-white-outline {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn-white-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: right;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
}

.footer-heading {
    color: var(--color-accent);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.footer-link {
    color: #9ca3af;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-link:hover {
    color: var(--color-white);
    padding-right: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-item span {
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.hours-list table {
    width: 100%;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #374151;
    padding: 25px 2rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* Utilities */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-cream {
    background-color: var(--color-accent-soft);
}

/* Compact Footer Styles - Premium Aesthetic */
.footer-compact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    max-width: 1200px;
    /* Even wider */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.footer-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.compact-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(4.5rem, auto));
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.compact-social a {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    color: var(--color-accent);
    font-size: 2rem;
    transition: var(--transition);
}

.compact-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.footer-compact-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.compact-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9ca3af;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.compact-item-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.compact-item-row i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .footer-compact-main {
        flex-direction: column;
        gap: 1.5rem;
    }

    .compact-item-row {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .compact-social {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .footer-compact-card {
        padding: 1.5rem;
    }

    .compact-item-row {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .compact-social {
        grid-template-columns: repeat(4, auto);
        gap: 1.25rem;
    }

    .compact-social a {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   UTILITY & COMPONENT CLASSES (From Inline Cleanup)
   ========================================================================== */

/* Section Borders */
.section-border-v {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-footer-padding {
    padding: 4rem 0;
}

/* Button & Link Utilities */
.btn-hero {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-cta-main {
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.125rem;
}

.btn-cta-sub {
    height: 3.5rem;
    padding: 0 3rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    direction: ltr;
}

.btn-cta-sub i {
    font-size: 1.75rem;
}

@media (max-width: 640px) {
    .btn-cta-sub {
        width: 100%;
        padding: 0.75rem 1rem;
        height: auto;
        white-space: normal;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Icon Utilities */
.icon-primary {
    color: var(--color-primary);
}

.icon-danger {
    color: #ef4444;
}

/* Container & Layout Utilities */
.social-actions-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

/* Video Component */
.video-reel {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: #000;
}

/* Feature & Restriction Components */
.feature-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0 0 2rem 0;
}

.feature-item-start {
    align-items: flex-start;
}

.feature-item-start i {
    margin-top: 5px;
}

.feature-text {
    font-size: 1rem;
}

.restriction-box {
    background-color: rgba(239, 68, 68, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-right: 4px solid #ef4444;
}

.restriction-title {
    font-size: 1.125rem;
    color: #b91c1c;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.restriction-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #4b5563;
}

.restriction-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Map Component */
.map-wrapper {
    width: calc(100% - 2rem);
    max-width: 1200px;
    margin: 3rem auto;
    height: 500px;
    filter: grayscale(0.2) contrast(1.1);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.map-wrapper:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-soft);
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
        width: calc(100% - 1.5rem);
        margin-top: 2rem;
        border-radius: 16px;
    }
}