/* ==========================================================================
   NAJMAT ALMESAFATY TECHNICAL SERVICES L.L.C - Style System
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --primary: #0b1c3a;         /* Premium Dark Blue */
    --primary-light: #162c52;   /* Secondary Dark Blue */
    --primary-rgb: 11, 28, 58;
    --accent: #d4af37;          /* Classic Gold */
    --accent-hover: #b89528;    /* Dark Gold */
    --accent-rgb: 212, 175, 55;
    
    --whatsapp: #25d366;        /* WhatsApp Green */
    --whatsapp-hover: #20ba5a;
    
    --bg-light: #f8fafc;        /* Cool Light Slate */
    --bg-white: #ffffff;        /* Pure White */
    --bg-card: #ffffff;
    --bg-card-dark: #112240;    /* Dark Card */
    
    --text-main: #1e293b;       /* Slate 800 */
    --text-muted: #64748b;      /* Slate 500 */
    --text-light: #f8fafc;      /* Slate 50 */
    --text-gray: #cbd5e1;       /* Slate 300 */
    --text-gold: #d4af37;       /* Accent Gold */
    
    --border-color: #e2e8f0;    /* Slate 200 */
    --border-color-dark: #23395b;
    --border-color-gold: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Heights and Layouts */
    --header-height: 80px;
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 70px 0;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease-out;
    
    /* Shadows */
    --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 20px -3px rgba(11, 28, 58, 0.06), 0 4px 6px -2px rgba(11, 28, 58, 0.03);
    --shadow-lg: 0 20px 30px -5px rgba(11, 28, 58, 0.12), 0 10px 15px -5px rgba(11, 28, 58, 0.06);
    --shadow-gold: 0 10px 25px -10px rgba(212, 175, 55, 0.4);
    --shadow-whatsapp: 0 10px 25px -10px rgba(37, 211, 102, 0.4);
}

/* 1. Reset and Base Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

iframe {
    display: block;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Classes */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent) 0%, #f3e5ab 50%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white { color: var(--bg-white) !important; }
.text-gray { color: var(--text-gray) !important; }
.text-gold { color: var(--accent) !important; }
.hidden { display: none !important; }

/* 2. Sticky Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(226, 232, 240, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Brand Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo-img-container {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border: 1.5px solid var(--accent);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center 10%;
}

.logo:hover .logo-img-container {
    transform: rotate(360deg);
}

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

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-btn-mobile {
    display: none;
}

/* Header Call CTA Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* Hamburger animations */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Nav Layout */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        box-shadow: -10px 10px 30px rgba(11, 28, 58, 0.08);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-btn-mobile {
        display: flex;
        width: 100%;
        margin-top: 24px;
        background-color: var(--accent);
        color: var(--primary);
        padding: 12px;
        border-radius: var(--border-radius-sm);
        justify-content: center;
        font-weight: 700;
        font-family: var(--font-heading);
    }
    
    .nav-btn-desktop {
        display: none;
    }
}

/* ==========================================================================
   3. Custom Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -8px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.btn-outline:hover {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--bg-white);
    box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -8px rgba(37, 211, 102, 0.6);
}

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

/* Form inputs & block fields */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   4. Full-Screen Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-image: url('images/construction_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 28, 58, 0.92) 0%, rgba(11, 28, 58, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    border-bottom: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    padding-bottom: 6px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 45px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mouse Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    50% { opacity: 0.3; }
    100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   5. Section Headers and Badges
   ========================================================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
}

.section-badge.center {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 60px;
    line-height: 1.6;
}

.section-subtitle.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   6. About Us Section
   ========================================================================== */
.about {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

/* Image Side & Floating Badge */
.about-image-side {
    position: relative;
}

.about-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.about-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-light);
    position: relative;
    z-index: 2;
}

.visual-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.stats-badge-floating {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: var(--border-radius-md);
    padding: 24px 20px;
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

/* Content Side */
.about-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-key-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.key-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.key-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.key-text strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.key-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-side {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .stats-badge-floating {
        right: 0;
        bottom: -15px;
    }
}

/* ==========================================================================
   7. Services Section (Animated Cards with Hover Effects)
   ========================================================================== */
.services {
    padding: var(--section-padding);
    background-color: var(--primary);
    position: relative;
}

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

/* Card Styling */
.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color-dark);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #f3e5ab 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background-color: var(--primary-light);
    transform: translateY(-8px);
    border-color: var(--border-color-gold);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.service-card .service-title {
    font-size: 1.35rem;
    color: var(--bg-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

.service-btn::after {
    content: ' →';
    transition: transform 0.25s ease;
}

.service-btn:hover {
    color: var(--text-light);
}

.service-btn:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   8. Why Choose Us Section
   ========================================================================== */
.why-choose-us {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.why-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 35px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.4);
}

.why-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(11, 28, 58, 0.05);
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon-box {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* ==========================================================================
   9. Project Statistics Section
   ========================================================================== */
.stats {
    padding: 80px 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
    color: var(--bg-white);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(11, 28, 58, 0) 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   10. Contact Section
   ========================================================================== */
.contact {
    padding: var(--section-padding);
    background-color: var(--primary-light);
    color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
}

.contact-desc {
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--accent);
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.info-link {
    font-size: 1.2rem;
    color: var(--bg-white);
    font-weight: 700;
}

.info-link:hover {
    color: var(--accent);
}

/* Contact actions row: WhatsApp / Email buttons */
.contact-action-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Form Wrapper card inside contact section */
.form-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    color: var(--text-main);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    outline: none;
    transition: var(--transition-fast);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b1c3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input:focus ~ .input-line,
.form-select:focus ~ .input-line,
.form-textarea:focus ~ .input-line {
    transform: scaleX(1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* Spinner Loader */
.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loader {
    display: inline-block;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Form success message styles */
.form-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    margin-bottom: 24px;
}

.success-title {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.success-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-wrapper {
        padding: 35px 24px;
    }
}

/* ==========================================================================
   11. Google Maps Section
   ========================================================================== */
.maps-section {
    width: 100%;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.maps-container iframe {
    width: 100%;
    height: 450px;
}

/* ==========================================================================
   12. Footer Section
   ========================================================================== */
.footer {
    background-color: #050d18;
    color: var(--text-gray);
    font-size: 0.92rem;
    border-top: 1.5px solid var(--border-color-dark);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
}

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

.footer-logo .logo-title {
    font-size: 1.4rem;
}

.footer-logo .logo-subtitle {
    font-size: 0.8rem;
}

.footer-brand-desc {
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

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

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

.footer-links a {
    transition: var(--transition-fast);
}

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

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-details li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-details li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #030810;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 0.85rem;
}

.author {
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   13. Scroll Reveal Transition Classes
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   14. Craftsmanship Showcase & Smooth Moving Template (Marquee)
   ========================================================================== */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.gallery-card {
    width: 380px;
    flex-shrink: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-img-wrapper {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(11, 28, 58, 0.95) 0%, rgba(11, 28, 58, 0.4) 70%, rgba(11, 28, 58, 0) 100%);
    padding: 30px 24px 20px;
    color: var(--bg-white);
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.gallery-caption h3 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 700;
}

.gallery-caption p {
    font-size: 0.88rem;
    color: var(--text-gray);
}

.gallery-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1230px));
    }
}

/* ==========================================================================
   15. Core Values Section
   ========================================================================== */
.core-values {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.value-card-four {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card-four:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

.value-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(11, 28, 58, 0.04);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.value-card-four:hover class {
    transform: scale(1.1);
}

.value-card-four:hover .value-card-icon {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.value-card-four h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card-four p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .values-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .values-grid-four {
        grid-template-columns: 1fr;
    }
    .value-card-four {
        padding: 35px 20px;
    }
}

/* ==========================================================================
   16. Feedback / Testimonials Section
   ========================================================================== */
.feedback {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.feedback-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: flex-start;
}

.reviews-column, .feedback-form-column {
    width: 100%;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-subheading {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
    position: relative;
    padding-bottom: 6px;
}

.feedback-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.feedback-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.25);
}

.feedback-card.new-review {
    animation: slideInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-color: var(--accent);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.star-rating {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.feedback-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feedback-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid var(--accent);
    flex-shrink: 0;
}

.user-info h4 {
    font-size: 0.98rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.user-info p {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Feedback Form Card */
.feedback-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.feedback-form-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.star-rating-selector {
    display: flex;
    gap: 6px;
    font-size: 1.8rem;
    color: var(--text-gray);
    margin-top: 6px;
}

.star-rating-selector span {
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-rating-selector span.active,
.star-rating-selector span:hover,
.star-rating-selector span.hovered {
    color: var(--accent);
}

@media (max-width: 991px) {
    .feedback-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* ==========================================================================
   17. Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), var(--shadow-whatsapp);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-5px) scale(1.05);
    color: white;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 575px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}



