/* ========================================
   مؤسسة أعالي اسيا التطويرية للمقاولات العامة - Main Stylesheet
   ======================================== */

@font-face {
    font-family: 'DIN Next';
    src: url('fonts/DINNext.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===== CSS Variables - Light Theme (Logo Colors) ===== */
:root {
    --primary: #C9A84C;
    --primary-dark: #A8893A;
    --primary-light: #DCBE6A;
    --secondary: #3D3D3D;
    --secondary-light: #555555;
    --accent: #C9A84C;
    --dark: #3D3D3D;
    --dark-card: #FFFFFF;
    --dark-surface: #F7F5F0;
    --text-light: #3D3D3D;
    --text-muted: #6B6B6B;
    --text-white: #2D2D2D;
    --bg-body: #F5F3EE;
    --bg-section-alt: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, #C9A84C, #DCBE6A, #C9A84C);
    --gradient-dark: linear-gradient(135deg, #3D3D3D, #555555);
    --gradient-hero: linear-gradient(135deg, rgba(61,61,61,0.80), rgba(61,61,61,0.55));
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 48px rgba(201, 168, 76, 0.15);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'DIN Next', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-light);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.8;
}

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

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

ul {
    list-style: none;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===== News Ticker ===== */
.news-ticker {
    background: var(--gradient-dark);
    color: #FFFFFF;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    font-weight: 700;
    font-size: 0.95rem;
    height: 44px;
    display: flex;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.ticker-content {
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
    animation: ticker 40s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding: 0 60px;
}

@keyframes ticker {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0 40px;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav-logo .logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-logo .logo-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    max-width: 200px;
    line-height: 1.4;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold) !important;
    color: var(--dark) !important;
    -webkit-text-fill-color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(212, 160, 23, 0.5);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darkened more for text contrast */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(212, 160, 23, 0); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.3;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 14px;
    font-family: 'DIN Next', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 160, 23, 0.5);
}

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

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

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ===== Section Common ===== */
.section {
    padding: 100px 40px;
    position: relative;
}

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

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--bg-section-alt);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-card .service-image {
    width: 100%;
    height: 240px;
    overflow: visible;
    position: relative;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card .service-image .service-icon-overlay {
    position: absolute;
    bottom: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 10;
    transition: var(--transition);
}

.service-icon-overlay i {
    font-size: 1.8rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon-overlay {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}

.service-card .service-body {
    padding: 42px 30px 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-card .service-body h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-card .service-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ===== Service Card Footer - Premium 3-Column ===== */
.service-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 160, 23, 0.12);
    overflow: hidden;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.footer-label,
.footer-action {
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Column 1 - Order Label */
.footer-label {
    background: rgba(212, 160, 23, 0.08);
    color: var(--primary-light);
    border-left: 1px solid rgba(212, 160, 23, 0.12);
}

.footer-label i {
    font-size: 0.75rem;
    color: var(--primary);
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-6px); }
}

.footer-label:hover {
    background: rgba(212, 160, 23, 0.15);
}

/* Column 2 - WhatsApp */
.footer-action.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border-left: 1px solid rgba(37, 211, 102, 0.15);
}

.footer-action.whatsapp:hover {
    background: #25D366;
    color: #fff;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1),
                0 0 20px rgba(37, 211, 102, 0.4);
}

/* Column 3 - Phone */
.footer-action.phone {
    background: rgba(212, 160, 23, 0.12);
    color: var(--primary);
    border-left: 1px solid rgba(212, 160, 23, 0.12);
}

.footer-action.phone:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15),
                0 0 20px rgba(212, 160, 23, 0.4);
}

.footer-action i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-action:hover i {
    transform: scale(1.25);
}

.footer-action span,
.footer-label span {
    font-size: 0.78rem;
    white-space: nowrap;
}

/* Glow line effect on hover */
.footer-label::after,
.footer-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 3px;
    transition: width 0.35s ease;
}

.footer-label::after { background: var(--primary); }
.footer-action.whatsapp::after { background: #25D366; }
.footer-action.phone::after { background: var(--primary); }

.footer-label:hover::after,
.footer-action:hover::after {
    width: 60%;
}

@media (max-width: 480px) {
    .footer-label span,
    .footer-action span {
        display: none;
    }
    .service-card-footer {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--border-radius);
}

.about-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 20px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.experience-badge .years-label {
    font-size: 0.85rem;
    font-weight: 700;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 2;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(212, 160, 23, 0.05);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== Areas Section ===== */
.areas-section {
    background: var(--bg-body);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.area-card {
    background: var(--bg-section-alt);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

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

.area-card .area-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.area-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

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

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-section-alt);
}

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

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

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 14px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(-5px);
}

.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card .contact-details h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-card .contact-details p,
.contact-card .contact-details a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.contact-form {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'DIN Next', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    direction: rtl;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 60px 40px 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: block;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Footer Tags/Keywords */
.footer-tags {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 30px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tags h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 800;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.tag-link:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
}

/* Multi-colored hover variety for professionalism */
.tag-link:nth-child(3n+1):hover { 
    background: #25D366; 
    color: #fff; 
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.tag-link:nth-child(3n+2):hover { 
    background: #007aff; 
    color: #fff; 
    border-color: #007aff;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-tags {
        padding: 30px 20px 0;
    }
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 80px; /* Above ticker + some space */
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    animation: float-bounce 3s ease-in-out infinite;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.whatsapp:hover {
    background: #1DA851;
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.float-btn.phone {
    background: var(--primary);
    animation-delay: 0.5s;
}

.float-btn.phone:hover {
    background: var(--primary-dark);
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(212, 160, 23, 0.5);
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-btn:hover {
    animation: none;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 80px; /* Above ticker */
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    border-radius: 14px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
}

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== Media Map ===== */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.5) contrast(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero h2 {
        font-size: 1.15rem;
    }
    .section {
        padding: 60px 20px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
