/* Custom Design Tokens & Variable System */
:root {
    --primary-color: #D4A017; /* Golden Yellow */
    --primary-hover: #B8860B; /* Darker Gold */
    --primary-light: rgba(212, 160, 23, 0.15);
    --secondary-color: #1F2937; /* Dark Gray */
    --secondary-light: #374151;
    --bg-light: #F8F9FA; /* Muted Background */
    --bg-white: #FFFFFF;
    --text-dark: #111827; /* Rich Charcoal */
    --text-muted: #4B5563; /* Medium Gray */
    --text-white: #FFFFFF;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1EBE57;
    --phone-color: #0284C7;
    --phone-hover: #0369A1;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

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

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    text-align: right;
    overflow-x: hidden;
}

/* Grid & Layout System */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

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

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

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

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

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

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

.section-header {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background-color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.title-bar {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 16px auto;
    border-radius: 2px;
}

.title-bar.text-right {
    margin: 0 0 16px 0;
}

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 18px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 1. Top Bar & Info Header */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.contact-info {
    display: flex;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

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

.whatsapp-color {
    color: var(--whatsapp-color);
}

.icon-svg {
    width: 16px;
    height: 16px;
}

/* Main Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

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

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
}

.brand-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Nav Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 40px 30px;
    transition: right var(--transition-normal);
    overflow-y: auto;
}

.nav-menu.open {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

.header-cta {
    display: none; /* Hide in mobile view */
}

/* Mobile Hamburger Menu */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay Backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* 2. Hero Section */
.hero-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: var(--text-white);
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-stats {
    background-color: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}

.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    font-size: 32px;
    background-color: rgba(214, 160, 23, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--primary-color);
}

.stat-text h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.stat-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* 3. Services Section */
.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.2);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

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

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card-text {
    font-size: 15px;
    color: var(--text-muted);
}

/* 4. About Section */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.about-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 320px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.exp-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 700;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-p strong {
    color: var(--secondary-color);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 30px;
}

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

.feature-tick {
    background-color: var(--primary-light);
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.about-feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-cta-box {
    margin-top: 10px;
}

/* AI GEO Optimization Quick Facts Card */
.quick-facts-card {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.quick-facts-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-hover));
}

.quick-facts-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.4);
}

.facts-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

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

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

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

.fact-item:hover {
    background-color: var(--primary-light);
}

.fact-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.fact-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
}

.fact-link {
    color: var(--primary-hover);
    text-decoration: underline;
    transition: var(--transition-fast);
}

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

/* 5. Gallery Section */
.gallery-grid {
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(31, 41, 55, 0.1), rgba(31, 41, 55, 0.95));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 24px;
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    transform: translateY(-20px);
    transition: var(--transition-normal) 0.1s;
}

.gallery-item:hover .zoom-icon {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 12px;
    color: var(--primary-color);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox-modal.open {
    display: flex;
    opacity: 1;
}

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

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
    border: 3px solid var(--primary-color);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--text-white);
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 40px;
    color: var(--text-white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.lightbox-next {
    left: 20px;
}

.lightbox-prev {
    right: 20px;
}

/* 6. Why Choose Us Section */
.why-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.2);
}

.why-icon {
    font-size: 36px;
    display: inline-block;
    margin-bottom: 20px;
}

.why-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* 7. Areas Section */
.area-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.area-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.area-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.area-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.area-notice {
    margin-top: 30px;
    background-color: var(--primary-light);
    border: 1px dashed var(--primary-color);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.area-notice p {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* 8. FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    text-align: right;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background-color: rgba(212, 160, 23, 0.05);
    color: var(--primary-color);
}

.accordion-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition-normal);
    margin-right: 15px;
}

/* New FAQ visual enhancements */
.faq-number {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--text-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(212,160,23,0.18);
}

.accordion-title {
    flex: 1 1 auto;
    text-align: right;
    padding: 0 12px;
    color: var(--secondary-color);
}

.accordion-header .accordion-icon {
    margin-left: 12px;
    margin-right: 0;
    transform-origin: center;
}

.accordion-item .accordion-body {
    background: linear-gradient(90deg, rgba(248,249,250,0.6), rgba(255,255,255,0.3));
    border-left: 4px solid transparent;
}

.accordion-item.active {
    border-color: rgba(212, 160, 23, 0.2);
}

.accordion-item.active .accordion-body {
    border-left-color: var(--primary-color);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
    padding: 0 24px;
    background-color: rgba(248, 249, 250, 0.5);
    border-top: 1px solid transparent;
}

.accordion-item.active {
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: var(--shadow-md);
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-body {
    padding: 18px 24px;
    border-top-color: rgba(0, 0, 0, 0.04);
}

.accordion-body p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 9. Contact Section */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.contact-p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-info-card:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.06);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

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

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

.card-icon-svg {
    width: 24px;
    height: 24px;
}

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

.card-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.card-text strong {
    font-size: 18px;
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    padding: 12px 16px;
    border: 2px solid rgba(31, 41, 55, 0.1);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

/* Input validation states */
.form-group.error .form-control {
    border-color: #EF4444;
}

.error-msg {
    display: none;
    font-size: 11px;
    color: #EF4444;
    margin-top: 4px;
    font-weight: 700;
}

.form-group.error .error-msg {
    display: block;
}

/* Success Modal Popup */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.success-modal.open {
    display: flex;
    opacity: 1;
}

.success-modal-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
    transform: scale(0.8);
    transition: transform var(--transition-normal);
}

.success-modal.open .success-modal-card {
    transform: scale(1);
}

.success-icon {
    font-size: 40px;
    color: var(--text-white);
    background-color: var(--whatsapp-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.success-modal-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.success-modal-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* 10. Footer */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--primary-color);
}

.footer-grid {
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-social a {
    background-color: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.footer-links a {
    font-size: 14px;
    display: block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 13px;
}

/* Floating quick Call & WhatsApp CTA on Mobile */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 998;
}

.float-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 0;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.float-wa {
    background-color: var(--whatsapp-color);
}

.float-call {
    background-color: var(--phone-color);
}

.float-icon-svg {
    width: 18px;
    height: 18px;
}

/* Scroll Animation Reveal Classes (IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* CSS Keyframe Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 160, 23, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
    }
}

/* Responsive Breakpoints */

/* Tablet View (min-width: 768px) */
@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-stats.grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-container {
        flex-direction: row;
        align-items: center;
    }

    .about-image-wrapper,
    .about-content {
        flex: 1;
        width: 50%;
    }

    .about-img {
        height: 480px;
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-text,
    .contact-form-wrapper {
        flex: 1;
        width: 50%;
    }

    .floating-cta {
        display: none; /* Hide floating buttons on larger screens */
    }
}

/* Desktop View (min-width: 1024px) */
@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Move 7th service to center in a 3-column grid */
    .services-grid .service-card:nth-child(7) {
        grid-column: 2 / 3;
    }

    .hamburger {
        display: none; /* Hide mobile menu toggle */
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        overflow-y: visible;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 24px;
    }

    .nav-link {
        font-size: 15px;
        padding: 4px 0;
    }

    .header-cta {
        display: block;
    }

    .hero-section {
        min-height: 85vh;
        padding: 100px 0;
    }

    .hero-title {
        font-size: 52px;
    }

    .stat-text h3 {
        font-size: 20px;
    }

    .stat-text p {
        font-size: 14px;
    }
}
