/**
 * Frontend Styles for Nama Landing Page Controller
 * Extracted from Home.html
 */

:root {
    --bg: #ffffff;
    --card: #f8fafc;
    --primary: #008148;
    --primary-dark: #006b3c;
    --primary-glow: rgba(0, 129, 72, 0.15);
    --cyan: #00ccff;
    --gold: #e2e600;
    --text-high: #0f172a;
    --text-low: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 24px -8px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px -20px rgba(0,129,72,0.3);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--text-high);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Professional Slider === */
.slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.slider-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    padding: 12px 32px;
    border-radius: 16px;
    background-color: rgba(0,129,72,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.slider-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.2s forwards;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    max-width: 700px;
    line-height: 1.8;
}

.slider-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.4s forwards;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    padding: 20px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: white;
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* Video in Slider */
.slider-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 720px;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    z-index: 3;
}

.slider-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === Trust Bar === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px;
    background: white;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-high);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.2rem;
}

.trust-icon svg {
    stroke: white;
}

/* === Section Styles === */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-high);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* === Hotels Grid === */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.hotel-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.hotel-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hotel-badge.star::after {
    content: ' ★';
    color: var(--gold);
}

.hotel-content {
    padding: 24px;
}

.hotel-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-high);
}

.hotel-location {
    color: var(--text-low);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.hotel-location svg {
    stroke: var(--primary);
}

.hotel-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hotel-contacts a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hotel-contacts a svg {
    stroke: var(--primary);
}

.hotel-contacts a:hover {
    color: var(--cyan);
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0,129,72,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,129,72,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 12px;
    font-weight: 600;
}

.btn-map {
    background: white;
    color: var(--text-high);
    border: 1px solid var(--border);
}

.btn-map:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-map svg {
    stroke: var(--text-high);
}

.btn-map:hover svg {
    stroke: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp svg {
    stroke: white;
}

/* === Video Section === */
.video-section {
    padding: 60px 20px;
    background: var(--bg);
}

.video-player-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}

.main-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 24px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.video-title svg {
    stroke: var(--gold);
}

.video-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--border);
}

.video-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.video-thumbnails::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}

.video-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 100px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--card);
}

.thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.thumbnail-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 129, 72, 0.2);
}

.thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.thumbnail-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay svg {
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.thumbnail-title {
    padding: 6px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-high);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === Thumbnail Navigation === */
.thumbnails-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thumbnails-wrapper {
    flex: 1;
    overflow: hidden;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-high);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-high);
}

.nav-btn:hover svg {
    stroke: white;
}

/* === Islamic Section === */
.islamic-section {
    background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hadith-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.hadith-ref {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.lang-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.lang-tab {
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    background: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.lang-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.hadith-text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: var(--text-high);
    font-family: 'Traditional Arabic', serif;
    text-align: justify;
}

.hadith-text.hidden {
    display: none;
}

/* === Services === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 16px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-high);
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-low);
    font-size: 0.9rem;
}

/* === Pillars === */
.pillars-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 20px;
}

.pillars-section .section-title {
    color: white;
}

.pillars-section .section-title::after {
    background: var(--gold);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.pillar-item {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.pillar-item:hover,
.pillar-item.active {
    background: rgba(255,255,255,0.25);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.pillar-num {
    display: block;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--text-high);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
}

.pillar-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pillar-ar {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* === Floating WhatsApp === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

/* === Licenses Page === */
.licenses-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.licenses-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.licenses-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.licenses-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.licenses-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.licenses-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.license-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.license-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.license-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--card);
}

.license-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.license-card:hover .license-thumbnail {
    transform: scale(1.05);
}

.license-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card) 0%, var(--border) 100%);
    color: var(--text-low);
}

.license-placeholder svg {
    stroke: var(--text-low);
}

.license-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 129, 72, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

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

.license-overlay svg {
    color: white;
    stroke: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.license-card:hover .license-overlay svg {
    transform: scale(1);
}

.license-info {
    padding: 20px;
}

.license-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-high);
}

.license-info p {
    font-size: 0.9rem;
    color: var(--text-low);
    line-height: 1.5;
}

.no-licenses {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--card);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    color: var(--text-low);
}

/* === Lightbox === */
.license-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.license-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-high);
}

.lightbox-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-high);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: white;
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.8;
}

/* === Responsive === */
@media (max-width: 768px) {
    .slider-section {
        height: 500px;
    }
    
    .slider-video {
        width: 90%;
    }
    
    .trust-bar {
        gap: 16px;
        padding: 16px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .trust-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 16px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-image {
        height: 200px;
    }
    
    .hadith-card {
        padding: 24px 16px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Licenses Page Responsive */
    .licenses-header {
        padding: 60px 20px;
    }

    .licenses-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .license-info {
        padding: 16px;
    }

    .license-info h3 {
        font-size: 1rem;
    }

    .license-info p {
        font-size: 0.85rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        left: 10px;
        right: auto;
    }

    .lightbox-next {
        left: auto;
        right: 10px;
    }

    .lightbox-close {
        top: -45px;
        width: 36px;
        height: 36px;
    }
}

/* === Contact Us Page === */
.nalp-contact-us-page {
    min-height: 100vh;
    background: var(--bg);
}

.nalp-contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nalp-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.nalp-contact-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.nalp-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
}

.nalp-page-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

.nalp-contact-main {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.nalp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nalp-contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.nalp-contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-high);
}

.nalp-form-group {
    margin-bottom: 24px;
}

.nalp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-high);
}

.nalp-form-group input[type="text"],
.nalp-form-group input[type="email"],
.nalp-form-group input[type="tel"],
.nalp-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.nalp-form-group input:focus,
.nalp-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 129, 72, 0.1);
}

.nalp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.nalp-submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.nalp-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 129, 72, 0.3);
}

.nalp-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.nalp-form-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    display: none;
}

.nalp-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.nalp-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.nalp-contact-info-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.nalp-contact-info-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-high);
}

.nalp-contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.nalp-contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nalp-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    flex-shrink: 0;
}

.nalp-info-icon svg {
    stroke: white;
}

.nalp-info-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-low);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nalp-info-content p,
.nalp-info-content span {
    font-size: 1rem;
    color: var(--text-high);
    line-height: 1.6;
}

.nalp-info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nalp-info-content a:hover {
    color: var(--cyan);
}

.nalp-contact-map {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
}

/* Contact Us Page Responsive */
@media (max-width: 968px) {
    .nalp-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nalp-contact-header {
        padding: 60px 20px;
    }
    
    .nalp-contact-main {
        padding: 40px 16px;
    }
    
    .nalp-contact-form-wrapper,
    .nalp-contact-info-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .nalp-contact-header {
        padding: 40px 16px;
    }
    
    .nalp-page-title {
        font-size: 1.8rem;
    }
    
    .nalp-page-description {
        font-size: 1rem;
    }
    
    .nalp-contact-form-wrapper,
    .nalp-contact-info-wrapper {
        padding: 24px 16px;
    }
    
    .nalp-contact-info-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .nalp-info-icon {
        width: 40px;
        height: 40px;
    }
}
