/*
Theme Name: Prime Clean
Theme URI: https://primeclean.sa
Author: Prime Clean
Author URI: https://primeclean.sa
Description: قالب احترافي لشركة Prime Clean للتنظيفات - تصميم عربي RTL كامل
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: prime-clean
*/

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

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

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

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #ffffff;
    color: #1a202c;
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

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

input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* ==================== VARIABLES ==================== */
:root {
    --primary: #004274;
    --primary-light: #005a9e;
    --secondary: #28a745;
    --secondary-light: #34c759;
    --navy: #2c3e50;
    --text-dark: #1a202c;
    --text-body: #4a5568;
    --text-light: #718096;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 66, 116, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

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

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; }
h4 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }

p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
}

/* ==================== CONTAINER ==================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1536px) {
    .container { max-width: 1400px; }
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 66, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 66, 116, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* ==================== HEADER ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

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

.site-logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: transparent !important;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.nav-list a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary);
}

.header-cta .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 20px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 66, 116, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
}

.hero-decoration-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(40, 167, 69, 0.2);
    border-radius: 50%;
    filter: blur(48px);
    animation: pulse 2s ease-in-out infinite;
}

.hero-decoration-2 {
    position: absolute;
    bottom: 160px;
    right: 40px;
    width: 160px;
    height: 160px;
    background: rgba(0, 66, 116, 0.2);
    border-radius: 50%;
    filter: blur(48px);
    animation: pulse 2s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.hero-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    color: var(--white);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--white);
}

@media (min-width: 768px) {
    .hero-wave svg { height: 120px; }
}

/* ==================== QUOTE FORM ==================== */
.quote-form-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -96px;
    padding: 0 16px 64px;
}

.quote-form-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    border: 1px solid #f1f1f1;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-form-tag {
    display: inline-block;
    background: rgba(0, 66, 116, 0.1);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.quote-form-title {
    color: var(--primary);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: end;
}

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

@media (max-width: 575px) {
    .quote-form { grid-template-columns: 1fr; }
    .quote-form-card { padding: 32px 20px; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23004274'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 18px;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.form-submit-btn:hover {
    transform: scale(1.02);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
    padding: 80px 0 112px;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, var(--primary), var(--navy));
}

.services-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.services-bg-decoration .circle-1 {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.services-bg-decoration .circle-2 {
    position: absolute;
    top: 80px;
    right: 15%;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.services-bg-decoration .circle-3 {
    position: absolute;
    bottom: 40px;
    left: 30%;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.services-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 64px;
}

.services-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.services-title {
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 32px auto 0;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f1f1;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.service-icon.blue {
    background: linear-gradient(to bottom right, rgba(0, 66, 116, 0.05), rgba(0, 66, 116, 0.1));
}

.service-icon.green {
    background: linear-gradient(to bottom right, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.1));
}

.service-icon.cyan {
    background: linear-gradient(to bottom right, rgba(8, 145, 178, 0.05), rgba(8, 145, 178, 0.1));
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-icon.blue svg { color: var(--primary); }
.service-icon.green svg { color: var(--secondary); }
.service-icon.cyan svg { color: #0891b2; }

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-divider {
    width: 64px;
    height: 4px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.service-divider.blue { background: var(--primary); }
.service-divider.green { background: var(--secondary); }
.service-divider.cyan { background: #0891b2; }

.service-list {
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 12px;
}

.service-list .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list .check-icon.blue { background: rgba(0, 66, 116, 0.1); }
.service-list .check-icon.green { background: rgba(40, 167, 69, 0.1); }
.service-list .check-icon.cyan { background: rgba(8, 145, 178, 0.1); }

.service-list .check-icon svg {
    width: 12px;
    height: 12px;
}

.service-list .check-icon.blue svg { color: var(--primary); }
.service-list .check-icon.green svg { color: var(--secondary); }
.service-list .check-icon.cyan svg { color: #0891b2; }

.service-btn {
    display: block;
    text-align: center;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    transform: scale(1.02);
}

.service-btn.blue {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 66, 116, 0.4);
}

.service-btn.green {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.service-btn.cyan {
    background: #0891b2;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    padding: 80px 0 112px;
    background: var(--white);
    overflow: hidden;
}

.why-us-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

@media (max-width: 991px) {
    .why-us-inner {
        flex-direction: column;
        gap: 48px;
    }
}

.why-us-image-wrapper {
    flex: 1;
    position: relative;
}

.why-us-image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 575px) {
    .why-us-badge {
        bottom: 16px;
        left: 16px;
    }
}

.why-us-badge .number {
    font-size: 40px;
    font-weight: 700;
}

.why-us-badge .label {
    font-size: 14px;
    opacity: 0.9;
}

.why-us-decoration-1 {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 96px;
    height: 96px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    filter: blur(32px);
}

.why-us-decoration-2 {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 128px;
    height: 128px;
    background: rgba(0, 66, 116, 0.1);
    border-radius: 50%;
    filter: blur(32px);
}

.why-us-content {
    flex: 1;
}

.why-us-tag {
    display: inline-block;
    background: rgba(0, 66, 116, 0.1);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.why-us-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.why-us-text {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-us-features-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 24px;
}

.why-us-list {
    margin-bottom: 32px;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.why-us-list .check {
    flex-shrink: 0;
    margin-top: 4px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-list .check svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.why-us-list span {
    color: var(--navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

/* ==================== TRUSTED EXPERTS SECTION ==================== */
.experts-section {
    background: var(--bg-light);
    padding: 80px 0 112px;
    overflow: hidden;
}

.experts-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

@media (max-width: 991px) {
    .experts-inner {
        flex-direction: column;
        gap: 48px;
    }
}

.experts-content {
    flex: 1;
}

.experts-tag {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--secondary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.experts-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.experts-text {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.experts-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.expert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.expert-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.expert-badge span {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

.experts-image-wrapper {
    flex: 1;
    position: relative;
}

.experts-image {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.experts-decoration-1 {
    position: absolute;
    z-index: -1;
    top: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    background: rgba(0, 66, 116, 0.1);
    border-radius: var(--radius-2xl);
}

.experts-decoration-2 {
    position: absolute;
    z-index: -2;
    top: -48px;
    right: -48px;
    width: 100%;
    height: 100%;
    background: rgba(40, 167, 69, 0.05);
    border-radius: var(--radius-2xl);
}

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

.stats-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
}

.stats-decoration-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.stats-decoration-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.stats-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 64px;
}

.stats-title {
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.stats-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 50px;
}

.stats-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(40, 167, 69, 0.2);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.stat-number {
    color: var(--white);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 500;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 80px 0 112px;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-subtitle {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.gallery-title {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 700;
}

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

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

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

.gallery-item {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-content {
    position: absolute;
    bottom: 24px;
    right: 24px;
    left: 24px;
    color: var(--white);
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-content .line {
    width: 48px;
    height: 4px;
    background: var(--secondary);
    margin-bottom: 12px;
}

.gallery-item-content h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.gallery-item-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: rgba(0, 66, 116, 0.1);
    border-bottom-left-radius: 40px;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-corner {
    background: rgba(40, 167, 69, 0.2);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-subtitle {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.testimonials-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonials-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    color: var(--secondary);
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

.testimonial-card {
    position: relative;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-quote svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.testimonial-text {
    margin-top: 10px;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: right;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    text-align: right;
}

.testimonial-author h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    width: 100%;
    padding: 60px 16px;
    background: var(--primary);
    text-align: center;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.3;
}

.cta-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    height: 60px;
    width: auto;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    direction: ltr;
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

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

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

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

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ==================== PAGE TEMPLATES ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 80px 0;
}

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

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

.contact-info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

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

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-body);
    font-size: 15px;
}

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

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.contact-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 16px 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 15px;
    resize: vertical;
    transition: all 0.3s ease;
}

.contact-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 66, 116, 0.3);
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 66, 116, 0.4);
}

/* ==================== PAGE HERO ENHANCED ==================== */
.page-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 66, 116, 0.9) 0%, rgba(44, 62, 80, 0.95) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb .separator {
    opacity: 0.5;
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-intro {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--white);
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-tag {
    display: inline-block;
    background: rgba(0, 66, 116, 0.1);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.intro-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.intro-content p {
    color: var(--text-body);
    font-size: 17px;
    line-height: 1.8;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-section.alt-bg {
    background: var(--bg-light);
}

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

.service-detail-grid.reverse {
    direction: ltr;
}

.service-detail-grid.reverse > * {
    direction: rtl;
}

@media (max-width: 991px) {
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: rtl;
    }
}

.service-detail-image {
    position: relative;
}

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

.service-detail-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-detail-badge.blue {
    background: var(--primary);
}

.service-detail-badge.green {
    background: var(--secondary);
}

.service-detail-badge.cyan {
    background: #0891b2;
}

.service-detail-badge svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-tag.blue {
    background: rgba(0, 66, 116, 0.1);
    color: var(--primary);
}

.service-tag.green {
    background: rgba(40, 167, 69, 0.1);
    color: var(--secondary);
}

.service-tag.cyan {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
}

.service-detail-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

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

.feature-item .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .check.blue { background: var(--primary); }
.feature-item .check.green { background: var(--secondary); }
.feature-item .check.cyan { background: #0891b2; }

.feature-item .check svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-cta-btn.blue {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 66, 116, 0.3);
}

.service-cta-btn.green {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.service-cta-btn.cyan {
    background: #0891b2;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.service-cta-btn:hover {
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-choose-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.why-choose-header h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
}

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

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

@media (max-width: 575px) {
    .why-choose-grid { grid-template-columns: 1fr; }
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-choose-card .icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-card .icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.why-choose-card h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-intro-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

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

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

.about-intro-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-intro-badge .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.about-intro-badge .label {
    font-size: 14px;
    opacity: 0.9;
}

.about-intro-tag {
    display: inline-block;
    background: rgba(0, 66, 116, 0.1);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-intro-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-intro-content .lead {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.about-intro-stats .stat {
    text-align: center;
}

.about-intro-stats .value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.about-intro-stats .label {
    font-size: 14px;
    color: var(--text-body);
}

/* Vision & Mission */
.vision-mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

.vm-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.vm-card.vision .vm-icon {
    background: rgba(0, 66, 116, 0.1);
}

.vm-card.mission .vm-icon {
    background: rgba(40, 167, 69, 0.1);
}

.vm-card.values .vm-icon {
    background: rgba(8, 145, 178, 0.1);
}

.vm-icon svg {
    width: 40px;
    height: 40px;
}

.vm-card.vision .vm-icon svg { color: var(--primary); }
.vm-card.mission .vm-icon svg { color: var(--secondary); }
.vm-card.values .vm-icon svg { color: #0891b2; }

.vm-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.vm-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== CONTACT PAGE ENHANCED ==================== */
.contact-info-subtitle {
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 32px;
}

.contact-info-list {
    margin-bottom: 32px;
}

.contact-info-item .icon.phone { background: var(--secondary); }
.contact-info-item .icon.email { background: #0891b2; }
.contact-info-item .icon.whatsapp { background: #25d366; }

.contact-social {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.contact-form-subtitle {
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 32px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 0 0 80px;
    background: var(--white);
}

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

@media (max-width: 767px) {
    .quick-contact-grid { grid-template-columns: 1fr; }
}

.quick-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
}

.quick-contact-card.phone {
    background: linear-gradient(135deg, rgba(0, 66, 116, 0.1) 0%, rgba(0, 66, 116, 0.05) 100%);
}

.quick-contact-card.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.quick-contact-card.email {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
}

.quick-contact-card .icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quick-contact-card.phone .icon { background: var(--primary); }
.quick-contact-card.whatsapp .icon { background: #25d366; }
.quick-contact-card.email .icon { background: #0891b2; }

.quick-contact-card .icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.quick-contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.quick-contact-card p {
    font-size: 15px;
    color: var(--text-body);
}

/* CTA Enhanced */
.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin-bottom: 8px;
}

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

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 38px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.hidden { display: none; }

@media (max-width: 767px) {
    .hidden-mobile { display: none; }
}

@media (min-width: 768px) {
    .hidden-desktop { display: none; }
}
