/* ==========================================
   بوح مزاج - Booh Mazak Website Styles
   Brand Colors:
   Primary Blue: #2b4281
   ========================================== */

/* === CSS Variables === */
:root {
    --primary: #2b4281;
    --primary-dark: #1e2f5c;
    --primary-light: #3a5aa8;
    --orange: #3a5aa8;
    --orange-dark: #2b4281;
    --orange-light: #4a6db8;
    --gold: #6b8fd4;
    --gold-light: #8aaae0;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(43, 66, 129, 0.1);
    --shadow-lg: 0 10px 40px rgba(43, 66, 129, 0.15);
    --shadow-orange: 0 4px 20px rgba(43, 66, 129, 0.2);
    --transition: all 0.3s ease;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.8;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-weight: 700;
}

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

img {
    max-width: 100%;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* === Selection === */
::selection {
    background: var(--orange);
    color: var(--white);
}

/* === Navbar === */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

/* Logo image in navbar */
.brand-logo-img {
    height: 45px;
    width: auto;
    margin-left: 10px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .brand-logo-img {
    height: 38px;
    filter: none;
}

.brand-logo {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .brand-logo {
    background: linear-gradient(135deg, var(--primary), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link::after {
    background: var(--primary);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.nav-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-right: 15px;
    transition: var(--transition);
}

.navbar.scrolled .nav-social a {
    color: var(--gray-600);
}

.nav-social a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
    border-radius: 8px;
}

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

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(107, 143, 212, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}

.hero-section .container {
    z-index: 2;
}

.hero-content {
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 66, 129, 0.2);
    border: 1px solid rgba(43, 66, 129, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(43, 66, 129, 0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 100px;
}

.coffee-cup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coffee-cup {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    animation: pulse-cup 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(43, 66, 129, 0.3);
}

.hero-logo-img {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes pulse-cup {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cup-ring {
    position: absolute;
    border: 2px solid rgba(43, 66, 129, 0.2);
    border-radius: 50%;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation: ring-rotate 10s linear infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    border-style: dashed;
    animation: ring-rotate 15s linear infinite reverse;
}

.ring-3 {
    width: 420px;
    height: 420px;
    animation: ring-rotate 20s linear infinite;
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll a:hover {
    color: var(--gold);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* === Section Common Styles === */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 66, 129, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    border-radius: 4px;
    margin: 0 auto 20px;
}

.section-line-light {
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light-custom {
    background-color: #f5f7f6;
}

/* === Image Placeholders === */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
}

.img-placeholder-1 {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    min-height: 350px;
}

.img-placeholder-2 {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    min-height: 200px;
}

/* === About Section === */
.about-image-grid {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-content {
    padding-right: 20px;
}

.about-subtitle {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--gray-100);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
}

.feature-item h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* === Vision & Mission === */
.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--white));
}

.vm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(43, 66, 129, 0.05);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vm-card-accent {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #ffffff;
}

.vm-card-accent h3 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.vm-card.vm-card-accent p {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    line-height: 2;
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(43, 66, 129, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.vm-card-accent .vm-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1);
    background: rgba(43, 66, 129, 0.1);
    color: var(--orange);
}

.vm-card-accent:hover .vm-icon {
    background: rgba(255, 255, 255, 0.25);
    color: var(--gold);
}

.vm-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.vm-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* === Branch Cards === */
.branch-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.branch-img {
    position: relative;
    overflow: hidden;
}

.img-placeholder-branch {
    min-height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.branch-ajabi {
    background: linear-gradient(135deg, var(--orange), var(--gold));
}

.branch-new {
    background: linear-gradient(135deg, #6c757d, #adb5bd);
}

.branch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.branch-badge-orange {
    background: var(--orange);
}

.branch-badge-gold {
    background: var(--gold);
    color: var(--dark);
}

.branch-body {
    padding: 25px;
}

.branch-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.branch-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.branch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.branch-features span {
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

.branch-features span i {
    margin-left: 5px;
    color: var(--orange);
}

.btn-branch {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

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

.btn-branch-orange {
    background: var(--orange);
}

.btn-branch-orange:hover {
    background: var(--orange-dark);
}

.branch-coming-soon {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(108, 117, 125, 0.9);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

/* === Menu Section === */
.menu-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-img {
    position: relative;
    overflow: hidden;
}

.img-menu {
    min-height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 0;
}

.img-menu-cold {
    background: linear-gradient(135deg, var(--primary-light), var(--gold));
}

.img-menu-sweet {
    background: linear-gradient(135deg, var(--primary), var(--gold));
}

.img-menu-special {
    background: linear-gradient(135deg, var(--orange), var(--gold));
}

.menu-price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--white);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-badge-special {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.menu-body {
    padding: 20px;
}

.menu-body h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.menu-body p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin: 0;
}

.menu-item {
    transition: all 0.4s ease;
}

.menu-item.hide {
    display: none;
}

/* === Values Section === */
.values-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(107, 143, 212, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.value-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.8;
}

/* === Drive-Thru Section === */
.drivethru-section {
    background: var(--white);
}

.dt-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.dt-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.dt-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dt-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dt-feature:hover {
    background: rgba(43, 66, 129, 0.08);
}

.dt-feature i {
    color: var(--orange);
    font-size: 1.3rem;
}

.dt-feature span {
    font-weight: 600;
    color: var(--dark);
}

.dt-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dt-img-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.dt-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
}

/* === Gallery Section === */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.gallery-placeholder {
    min-height: 250px;
    border-radius: var(--radius);
}

.gallery-item-wide .gallery-placeholder {
    min-height: 250px;
}

.gp-1 { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.gp-2 { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.gp-3 { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.gp-4 { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.gp-5 { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }

/* === Testimonials === */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-stars i {
    margin-left: 3px;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-author h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
}

/* === Contact Section === */
.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(43, 66, 129, 0.08);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-item h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--dark);
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Cairo', sans-serif;
    padding: 12px 16px;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 66, 129, 0.1);
}

.contact-form-wrapper .form-floating label {
    font-family: 'Cairo', sans-serif;
    color: var(--gray-600);
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: cta-glow 8s linear infinite;
}

@keyframes cta-glow {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20%, 20%); }
    100% { transform: translate(0, 0); }
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
}

.cta-section .btn {
    position: relative;
    border-radius: 12px;
    padding: 14px 40px;
    font-weight: 700;
}

/* === Footer === */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(10);
    opacity: 0.9;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
    padding-right: 8px;
}

.footer-newsletter h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 10px 0 0 10px;
    font-family: 'Cairo', sans-serif;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--orange);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 12px 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(43, 66, 129, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5); }
}

/* === Responsive === */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        padding: 100px 0 40px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-img-secondary {
        display: none;
    }

    .about-experience-badge {
        top: auto;
        bottom: -15px;
        left: 15px;
    }

    .about-content {
        padding-right: 0;
        padding-top: 40px;
    }

    .navbar .collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: var(--shadow);
    }

    .navbar .nav-link {
        color: var(--dark) !important;
    }

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

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .dt-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* === Animations on Scroll === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Loading Animation === */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-content h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loader-pulse 1.5s infinite;
}

@keyframes loader-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
