/* ==========================================
   Mozaiek Vastgoed - Modern Construction Website
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-yellow: #E0455F;
    --primary-red: #E0455F;
    --primary-yellow-hover: #c9304a;
    --navy-dark: #1a2332;
    --navy-darker: #0f1621;
    --text-dark: #1a2332;
    --text-gray: #5a6677;
    --text-light: #8a94a6;
    --bg-white: #ffffff;
    --bg-light: #f8f9fb;
    --bg-cream: #faf9f7;
    --border-light: #e5e8ed;
    --success-green: #22c55e;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--bg-white);
    border: 2px solid var(--primary-yellow);
}

.btn-primary:hover {
    background: var(--primary-yellow-hover);
    border-color: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: var(--bg-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--bg-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--bg-white);
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--navy-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left .stars {
    color: var(--primary-yellow);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    opacity: 0.9;
}

.top-bar-right a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header.shrunk {
    padding: 0;
}

.header.shrunk .container {
    padding-top: 6px;
    padding-bottom: 6px;
}

.header.shrunk .logo-img {
    height: 35px;
}

.header.shrunk .nav-menu a {
    font-size: 13px;
}

.header.shrunk .nav-cta .btn {
    padding: 8px 16px;
    font-size: 13px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: padding var(--transition-normal);
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-normal);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-normal);
}

.logo .tip {
    color: var(--text-dark);
}

.logo .top {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

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

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

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    transition: font-size var(--transition-normal);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--text-dark);
}

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

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
    transition: padding var(--transition-normal), font-size var(--transition-normal);
}

/* Dropdown Menu */
.nav-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item-has-children>a svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.nav-item-has-children:hover>a svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    border-top: 3px solid var(--primary-yellow);
}

.nav-item-has-children:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--bg-light);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-yellow);
    padding-left: 28px;
}

.dropdown-menu li a::after {
    display: none;
    /* Remove underline effect from main menu links */
}

/* Arrow up for dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--primary-yellow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: url('../images/hero/hero9.jpg') center center no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%) scale(1);
    animation: heroZoom 20s linear infinite alternate;
    will-change: transform;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 22, 33, 0.75) 0%, rgba(26, 35, 50, 0.65) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--bg-white);
}

.hero-content h1 {
    font-family: var(--font-heading);
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 520px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 36px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-features li svg {
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-avatars {
    display: flex;
}

.hero-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    margin-left: -12px;
    object-fit: cover;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-rating .stars {
    color: var(--primary-yellow);
    font-size: 14px;
}

.hero-rating span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Sidebar / Contact Card */
.hero-sidebar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.hero-sidebar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-sidebar-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
}

.hero-sidebar-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy-dark);
}

.hero-sidebar-header p {
    font-size: 14px;
    color: var(--text-gray);
}

.hero-sidebar-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-sidebar-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
}

.hero-sidebar-phone {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

.hero-sidebar-phone a {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-sidebar-phone a:hover {
    color: var(--primary-yellow);
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
}

/* ==========================================
   WORKING METHOD SECTION
   ========================================== */
.working-method {
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}

.working-method::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 69, 95, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.working-method::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 69, 95, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

.working-method .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.method-content h3 {
    margin-bottom: 24px;
}

.method-content>p {
    margin-bottom: 40px;
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.method-item {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    color: var(--primary-yellow);
    width: 24px;
    height: 24px;
}

.method-item h5 {
    margin-bottom: 6px;
}

.method-item p {
    font-size: 14px;
}

.method-image {
    position: relative;
}

.method-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.method-testimonial {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.method-testimonial p {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 12px;
}

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

.method-testimonial-author span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.method-testimonial-author .role {
    font-weight: 400;
    color: var(--text-light);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f5f0eb 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 40px solid rgba(224, 69, 95, 0.08);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 30px solid rgba(59, 130, 246, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    pointer-events: none;
}

.services .container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 40%, rgba(224, 69, 95, 0.1) 40%, rgba(224, 69, 95, 0.1) 60%, transparent 60%);
    top: 20%;
    right: 5%;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

.services .container::after {
    display: none;
}

/* ==========================================
   SERVICES SECTION (GRID LAYOUT)
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #1a2332;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    height: 400px;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Stretched Link Utility */
.stretched-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

/* Service Content - Overlay Style like Recent Projects */
.service-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 35, 50, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 1;
    transition: background 0.3s ease;
}

.service-card:hover .service-content {
    background: linear-gradient(180deg, transparent 20%, rgba(26, 35, 50, 0.95) 100%);
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.service-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-content h4,
.service-card:hover .service-content p {
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy-dark);
    transition: all 0.3s ease;
    background: var(--primary-yellow);
    padding: 10px 24px;
    border-radius: 50px;
    width: fit-content;
    position: static;
    margin-top: 16px;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(20px);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    gap: 12px;
    background: #fff;
    color: var(--navy-dark);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* View All Services Button Styling */
.services-cta {
    text-align: center;
    margin-top: 60px !important;
}

.services-cta .btn-outline {
    border-width: 2px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border-color: rgba(26, 35, 50, 0.2);
    color: var(--navy-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
}

.services-cta .btn-outline:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(26, 35, 50, 0.15);
}

/* View All Services */
.services-cta {
    text-align: center;
    margin-top: 20px;
}

/* ==========================================
   PORTFOLIO / PROJECTS SECTION
   ========================================== */
.portfolio {
    background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 35, 50, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    top: -350px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.portfolio::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 69, 95, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: 10%;
    pointer-events: none;
}

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

.portfolio-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.portfolio-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(224, 69, 95, 0.1);
    color: var(--primary-yellow);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26, 35, 50, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(26, 35, 50, 0.95) 100%);
}

.project-overlay h4 {
    color: var(--bg-white);
    margin-bottom: 4px;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0rem;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay h4,
.project-card:hover .project-overlay p {
    transform: translateY(0);
}

.project-overlay .btn {
    position: static;
    margin-top: 16px;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 8px 20px;
    font-size: 14px;
}

.project-card:hover .project-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SERVICE AREA / MAP SECTION
   ========================================== */
.service-area {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.service-area::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 35, 50, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    pointer-events: none;
}

.service-area::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 69, 95, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}

.service-area .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Map Container - Now First and Larger */
.area-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(26, 35, 50, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.area-map .map-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.area-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.1) contrast(1.05);
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.map-overlay-badge svg {
    color: var(--primary-red);
}

/* Content Section */
.area-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.area-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--navy-dark);
    font-weight: 800;
    line-height: 1.2;
}

.area-content>p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Cities Section */
.area-cities {
    background: white;
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(26, 35, 50, 0.06);
}

.cities-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    list-style: none;
    padding: 0;
}

.area-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid rgba(26, 35, 50, 0.08);
}

.area-list li:hover {
    background: var(--navy-dark);
    color: white;
}

.area-list li:hover .city-dot {
    background: var(--primary-yellow);
}

.city-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

/* Buttons */
.area-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.area-buttons .btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
}

.area-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid rgba(26, 35, 50, 0.15);
    color: var(--navy-dark);
}

.area-buttons .btn-outline:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.area-buttons .btn-outline svg {
    transition: transform 0.3s ease;
}

.area-buttons .btn-outline:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 968px) {
    .service-area .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .area-map {
        min-height: 400px;
        order: 2;
    }

    .area-content {
        order: 1;
        text-align: center;
    }

    .area-cities {
        text-align: left;
    }

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

@media (max-width: 600px) {
    .area-map {
        min-height: 350px;
    }

    .area-list li {
        padding: 8px 14px;
        font-size: 13px;
    }

    .area-buttons {
        flex-direction: column;
    }

    .area-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    pointer-events: none;
}

.process .section-header {
    position: relative;
    z-index: 1;
}

.process .section-label {
    color: var(--primary-yellow);
}

.process .section-header h2 {
    color: var(--bg-white);
}

.process .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    margin-bottom: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-red) 100%);
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.process-step::before {
    display: none;
}

.process-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 4px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.process-step:hover .process-image {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -5px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    z-index: 2;
}

.process-step:hover .process-number {
    background: var(--primary-red);
    color: var(--bg-white);
    transform: none;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--bg-white);
    font-weight: 700;
    line-height: 1.3;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .process-steps {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 20px;
        justify-content: flex-start;
    }

    .process-steps::before {
        width: 1000px;
    }

    .process-step {
        min-width: 200px;
    }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 69, 95, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    top: -250px;
    left: -150px;
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--bg-white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    background: linear-gradient(180deg, #fef9f3 0%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 69, 95, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    bottom: -250px;
    left: -200px;
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 15px;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h6 {
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    background: linear-gradient(135deg, #e04560 0%, #c93d54 50%, #a83347 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920') center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    pointer-events: none;
}

.cta h2 {
    color: var(--bg-white);
    white-space: nowrap;
    line-height: 2 !important;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-features li {
    color: var(--bg-white);
}

.cta-features svg {
    color: var(--primary-yellow);
}

.cta-buttons .btn-primary {
    background: var(--bg-white);
    color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-white);
    color: var(--primary-red);
    border-color: var(--bg-white);
    transform: none;
    box-shadow: none;
}

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

.cta-buttons .btn-outline:hover {
    background: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--primary-red);
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

/* Duplicate CTA styles removed - styles defined above with white text */

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    font-size: 15px;
}

.cta-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #f5a623;
    stroke: #f5a623;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--navy-darker);
    color: var(--bg-white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-yellow);
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
}

.footer-col ul li svg {
    width: 16px;
    flex-shrink: 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow);
}

/* ==========================================
   FLOATING CONTACT WIDGET
   ========================================== */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-contact.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.floating-btn:hover {
    transform: scale(1.1);
}

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

.floating-btn.phone {
    background: var(--primary-yellow);
    color: var(--bg-white);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}


/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-hero {
    position: relative;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 40%, rgba(10, 25, 47, 0.1) 100%),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 40px 0 40px;
    color: var(--bg-white);
    text-align: left;
    /* Changed from center */
}

.contact-hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 1200px;
}

.contact-hero-content {
    max-width: 650px;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    color: var(--bg-white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero p.subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

.contact-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-yellow {
    background: var(--primary-yellow);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    border: 2px solid var(--primary-yellow);
}

.btn-hero-yellow:hover {
    background: transparent;
    color: var(--primary-yellow);
}

.btn-hero-white {
    background: var(--bg-white);
    color: var(--navy-dark);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
    border: 2px solid var(--bg-white);
}

.btn-hero-white:hover {
    background: transparent;
    color: var(--bg-white);
}

.hero-ratings {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero-rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-rating-item span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .contact-hero {
        background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 100%),
            url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&h=1080&fit=crop');
        text-align: center;
        padding: 80px 0;
    }

    .contact-hero-content {
        margin: 0 auto;
    }

    .contact-hero h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

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

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


.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-info-col {
    padding: 60px;
    background: #f8f9fb;
}

.contact-info-col h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-info-col p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.btn-call-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-yellow);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    width: 100%;
    max-width: 360px;
    transition: var(--transition-normal);
}

.btn-call-large:hover {
    background: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.trust-item svg {
    color: var(--text-light);
    width: 18px;
    height: 18px;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.125rem;
}

.google-g {
    font-size: 24px;
}

/* Contact Form Specifics */
.contact-form-col {
    padding: 60px;
    background: var(--bg-white);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-label span {
    color: red;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    background: #fcfcfc;
    transition: var(--transition-fast);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(224, 69, 95, 0.1);
}

.file-upload-area {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    background: #f8f9fb;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.file-upload-area:hover {
    border-color: var(--primary-yellow);
    background: #fffbef;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}

.btn-upload {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 13px;
}

.file-upload-text {
    font-size: 13px;
    color: var(--text-gray);
}

.file-info {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Services Checkbox List */
.services-checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    user-select: none;
    transition: var(--transition-fast);
}

.checkbox-item:hover {
    color: var(--text-dark);
}

.checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #f0f0f0;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.checkbox-item:hover input~.checkbox-checkmark {
    background-color: #e8e8e8;
    border-color: var(--text-light);
}

.checkbox-item input:checked~.checkbox-checkmark {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-item input:checked~.checkbox-checkmark:after {
    display: block;
}

.checkbox-item .checkbox-checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 1.4;
}

@media (max-width: 480px) {
    .services-checkbox-list {
        grid-template-columns: 1fr;
    }
}

.btn-submit-green {
    background: var(--success-green);
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-submit-green:hover {
    background: #1ea34d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsiveness for Contact Page */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 32px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        display: none;
    }

    .working-method .container,
    .service-area .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .method-image img {
        height: 400px;
    }

    /* Responsive adjustments for process steps */
    @media (max-width: 1024px) {
        .process-steps {
            overflow-x: auto;
            flex-wrap: nowrap;
            padding-bottom: 20px;
            justify-content: flex-start;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
        }

        .process-steps::before {
            width: 1000px;
        }

        .process-step {
            min-width: 220px;
            flex: 0 0 auto;
        }
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .nav {
        gap: 12px;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

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

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: auto !important;
        flex: 1 1 auto;
        padding: 12px 16px;
        min-width: 140px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        overflow-x: visible;
        flex-direction: column;
        flex-wrap: nowrap;
        padding-bottom: 0;
        justify-content: center;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        width: 100%;
        min-width: auto;
        flex: 1 1 auto;
        padding: 0;
        margin-bottom: 10px;
    }

    .process-image {
        width: 80px;
        height: 80px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .area-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes heroZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(26, 35, 50, 0.06);
    border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.partners::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(224, 69, 95, 0.03) 0%, transparent 30%);
    inset: 0;
    pointer-events: none;
}

.partners::after {
    display: none;
}

.partners-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.partners-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partners-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.partners-nav:hover {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: var(--bg-white);
}

.partners-slider {
    display: flex;
    align-items: center;
    gap: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.partner-logo img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   NEWS / BLOG SECTION
   ========================================== */
.news {
    background: linear-gradient(135deg, #1a2332 0%, #0f1623 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.news::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.news::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    top: -200px;
    left: -150px;
    pointer-events: none;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--bg-white);
}

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

.news-counter {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    /* Improved visibility */
    font-weight: 500;
}

.news-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    /* Modern translucent look */
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.news-nav:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--navy-dark);
}

.news-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 280px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
    background: aliceblue;
}

.news-card-content h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    font-size: 13px;
    font-weight: 600;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-link:hover {
    color: #2563eb;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 35, 50, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 35, 50, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.faq::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    bottom: -250px;
    right: -200px;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-yellow);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 300;
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Responsive for Partners, News, FAQ */
@media (max-width: 768px) {
    .partners-slider {
        gap: 40px;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 120px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .news-card {
        flex: 0 0 260px;
    }

    .faq-question {
        font-size: 15px;
    }
}