/* 
   ABCO STAR - Premium Business Website Design System (Light Theme)
   Core Visual Identity: Warm Off-White/Beige Background (Comfortable for the eyes)
   Contrasting Accents: Deep Corporate Navy Blue & Metallic Gold
   Typography: Cairo (Arabic), Outfit (English/Numbers)
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium Warm Beige & High Contrast Navy */
    --bg-deep: #FAF7F0; /* Soft warm luxury off-white/beige background */
    --bg-card: #FFFFFF; /* Pure white crisp card background */
    --bg-glass: rgba(250, 247, 240, 0.82); /* Semi-transparent beige glass for navigation */
    --bg-glass-hover: rgba(255, 255, 255, 0.98);
    
    --color-primary: #0A1128; /* Deep rich navy blue (highly contrasting primary text!) */
    --color-secondary: #1F2937; /* Dark slate charcoal for comfortable reading */
    
    --accent-gold: #C59B27; /* Sophisticated gold for highlights, icons, active elements */
    --accent-gold-glow: rgba(197, 155, 39, 0.12);
    --accent-gold-dark: #8E6D13;
    --accent-light: #FAF1D1; /* Light cream gold */
    
    --text-white: #0A1128; /* Replaced with navy for high contrast on light backgrounds */
    --text-silver: #1F2937; /* Primary readable slate body text */
    --text-gray: #4A5568; /* Description and subtler elements */
    --text-muted: #718096; /* Muted gray for smaller details */
    
    --border-glass: rgba(197, 155, 39, 0.18); /* Elegant gold-tinted borders */
    --border-glass-hover: rgba(197, 155, 39, 0.45);
    
    --shadow-premium: 0 12px 35px -10px rgba(10, 17, 40, 0.08), 0 2px 5px rgba(10, 17, 40, 0.03);
    --shadow-gold: 0 4px 20px rgba(197, 155, 39, 0.08);
    --shadow-gold-hover: 0 8px 30px rgba(197, 155, 39, 0.18);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-silver);
    font-family: 'Cairo', 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl; /* RTL as primary language is Arabic */
    text-align: right;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(197, 155, 39, 0.25);
    border-radius: 4px;
    border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Utility Containers & Typography */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary); /* Navy contrast */
    font-weight: 700;
}

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

/* Selection style */
::selection {
    background-color: var(--accent-gold);
    color: #FFFFFF;
}

/* Main Background Glow Effects (Warm light glow) */
.bg-glow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.06) 0%, rgba(250, 247, 240, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(10, 17, 40, 0.03) 0%, rgba(250, 247, 240, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}

/* Header & Navigation Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    transition: var(--transition-smooth);
}

header.scrolled .navbar {
    height: 75px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-png {
    height: 58px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: var(--transition-bounce);
    /* Soft border-radius if the logo has subtle padding */
    border-radius: 6px;
}

header.scrolled .logo-png {
    height: 48px;
}

.logo-container:hover .logo-png {
    transform: scale(1.06) rotate(2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-light));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-gold-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-gold-dark);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-bounce);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
    color: #FFFFFF !important;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1010;
}

.hamburger .line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    background: rgba(197, 155, 39, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--accent-gold-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(10, 17, 40, 0.02);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(197, 155, 39, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 155, 39, 0); }
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-primary);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary) 20%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 580px;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px rgba(197, 155, 39, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-hover);
    color: #FFFFFF !important;
}

.btn-secondary {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    color: var(--color-primary);
    box-shadow: var(--shadow-premium);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    color: var(--color-primary);
}

/* Interactive SVG Hero Artwork */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-shapes {
    width: 100%;
    max-width: 460px;
    height: auto;
    position: relative;
    z-index: 2;
}

.visual-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.08) 0%, rgba(250, 247, 240, 0) 70%);
    filter: blur(40px);
    z-index: 1;
}

/* General Section Structure */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-subtitle {
    color: var(--accent-gold-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
}

.section-desc {
    color: var(--text-gray);
    font-size: 16px;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-lead {
    font-size: 18px;
    color: var(--accent-gold-dark);
    font-weight: 600;
    line-height: 1.7;
    text-align: justify;
}

.about-paragraph {
    color: var(--text-gray);
    font-size: 15.5px;
    text-align: justify;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.about-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.about-feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-hover);
}

.feature-icon-wrapper {
    background: rgba(197, 155, 39, 0.08);
    border: 1px solid rgba(197, 155, 39, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.feature-info p {
    font-size: 12px;
    color: var(--text-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold-hover);
    transform: scale(1.03);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.02) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-gold-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 12.5px;
    color: var(--text-gray);
}

/* Services / Products Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 30px 24px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.service-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(197, 155, 39, 0.02) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium), var(--shadow-gold-hover);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(197, 155, 39, 0.05);
    border: 1px solid rgba(197, 155, 39, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
    transition: var(--transition-bounce);
    z-index: 2;
}

.service-card:hover .service-icon-box {
    background: var(--accent-gold);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(197, 155, 39, 0.3);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.service-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--accent-gold-dark);
}

.service-description {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: justify;
}

.service-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    z-index: 2;
    transition: var(--transition-fast);
    padding-top: 10px;
}

.service-link svg {
    transition: var(--transition-fast);
    transform: scaleX(-1);
}

.service-card:hover .service-link {
    color: var(--color-primary);
}

.service-card:hover .service-link svg {
    transform: scaleX(-1) translateX(-5px);
}

/* Technical Spotlight Banner (QR 555 showcase - High Contrast Corporate Navy Blue to grab attention) */
.spotlight-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #0A1128 0%, #1C2541 100%); /* Strong Contrast Navy */
    border: 1px solid var(--border-glass-hover);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(10, 17, 40, 0.15);
    position: relative;
    overflow: hidden;
}

.spotlight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-light));
}

.spotlight-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spotlight-badge {
    background: rgba(197, 155, 39, 0.15);
    border: 1px solid rgba(197, 155, 39, 0.3);
    color: var(--accent-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 800;
    align-self: flex-start;
}

.spotlight-title {
    font-size: 26px;
    color: #FFFFFF !important;
}

.spotlight-desc {
    color: #E2E8F0 !important;
    font-size: 14.5px;
    text-align: justify;
    line-height: 1.7;
}

.spotlight-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.spotlight-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-pdf-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition-bounce);
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.spotlight-pdf-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-gold-hover);
    color: #FFFFFF !important;
}

.spotlight-pdf-btn span {
    font-size: 15px;
}

.spotlight-pdf-btn small {
    font-size: 11px;
    opacity: 0.8;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

/* Company Info & Contact Us Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow-premium);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 155, 39, 0.06);
    border: 1px solid rgba(197, 155, 39, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-dark);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    direction: ltr;
    display: inline-block;
}

.contact-details .phone-link {
    display: block;
    color: var(--color-primary);
    direction: ltr;
    text-align: right;
    transition: var(--transition-fast);
}

.contact-details .phone-link:hover {
    color: var(--accent-gold-dark);
}

.contact-details .address-text {
    direction: rtl;
    text-align: right;
    font-size: 15px;
}

/* Hours Table */
.hours-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.hours-panel h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(10, 17, 40, 0.05);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 14.5px;
}

.hours-table td.day {
    color: var(--text-gray);
    font-weight: 600;
}

.hours-table td.time {
    color: var(--color-primary);
    font-weight: 700;
    text-align: left;
}

.hours-table td.closed {
    color: var(--accent-gold-dark);
    font-weight: 700;
    text-align: left;
}

/* Interactive Map & Contact Form */
.contact-media {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 8px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 364px;
    border-radius: 18px;
    border: none;
    display: block;
}

.map-btn-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #FFFFFF;
    border: 1px solid var(--border-glass-hover);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-bounce);
}

.map-btn-overlay:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Privacy Policy Page Custom Styles */
.privacy-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(197, 155, 39, 0.04) 0%, rgba(250, 247, 240, 0) 100%);
}

.privacy-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 100px;
}

.privacy-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.privacy-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-section h3 {
    font-size: 20px;
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: justify;
}

.privacy-list {
    list-style: none;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-list li {
    font-size: 14.5px;
    color: var(--text-gray);
    position: relative;
    padding-right: 15px;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold-dark);
    border-radius: 50%;
}

/* Footer Section (Rich Deep Navy Anchor) */
footer {
    background-color: #0A1128; /* Strong Corporate Navy Anchor */
    border-top: 1px solid rgba(197, 155, 39, 0.15);
    padding: 80px 0 30px 0;
    position: relative;
    color: #E2E8F0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: #A0AEC0 !important;
    text-align: justify;
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-link {
    font-size: 14px;
    color: #A0AEC0 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-gold) !important;
    transform: translateX(-5px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #A0AEC0 !important;
}

.footer-contact-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-contact-item .direction-ltr {
    direction: ltr;
    display: inline-block;
    text-align: right;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #718096;
}

.copyright {
    font-size: 13.5px;
    color: #718096;
}

.copyright span {
    font-family: 'Outfit', sans-serif;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 13.5px;
    color: #718096;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* WhatsApp Floating Widget (With user's requested WhatsApp-Logo.svg file) */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 0;
}

.whatsapp-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(32, 176, 56, 0.35));
    transition: var(--transition-bounce);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 58px;
    height: 58px;
    background-color: #20B038;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-btn:hover .whatsapp-logo-img {
    transform: translateY(-5px) scale(1.08);
    filter: drop-shadow(0 12px 25px rgba(32, 176, 56, 0.55));
}

.whatsapp-tooltip {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass-hover);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    transform: translateX(-15px);
    transition: var(--transition-bounce);
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--accent-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Page Scroll Animation Utility */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries (Mobile Optimization) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        background: var(--bg-glass);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-glass);
    }
    
    .navbar {
        height: 75px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-deep);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        padding: 100px 24px 40px 24px;
        box-shadow: 10px 0 30px rgba(10, 17, 40, 0.15);
        transition: var(--transition-smooth);
        z-index: 1005;
        border-right: 1px solid var(--border-glass);
    }
    
    body.ltr .nav-menu {
        left: auto;
        right: -100%;
        border-right: none;
        border-left: 1px solid var(--border-glass);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    body.ltr .nav-menu.active {
        right: 0;
        left: auto;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(10, 17, 40, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 16px 8px;
        font-size: 16px;
    }
    
    .nav-cta {
        margin-top: 24px;
        width: 100%;
        justify-content: center;
    }

    /* Hero Section Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .badge {
        align-self: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 15px;
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-shapes {
        max-width: 320px;
    }
    
    /* Sections General Mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .spotlight-banner {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    
    .spotlight-pdf-btn {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .privacy-content-card {
        padding: 24px;
    }
    
    .privacy-hero {
        padding-top: 120px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    .stat-box {
        padding: 30px 20px;
    }
    .whatsapp-widget {
        bottom: 20px;
        left: 20px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}
