/* ===== GLOBAL STYLES WITH PROFESSIONAL COLOR SCHEME ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    line-height: 1.6;
    min-height: 100vh;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== PREMIUM HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(56, 189, 248, 0.2);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* ===== LOGO STYLES ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 44px;
    width: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: rotate(5deg);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

.logo-span {
    font-size: 26px;
    font-weight: 800;
    color: #f1f5f9;
    position: relative;
}

.logo-span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover .logo-span::after {
    transform: scaleX(1);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== NAVIGATION MENU ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #f1f5f9;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: #38bdf8;
    font-weight: 600;
}

.nav-links a.active::before {
    width: 100%;
}

/* ===== CALL TO ACTION BUTTON ===== */
.nav .btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
    position: relative;
    overflow: hidden;
}

.nav .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav .btn-primary:hover::before {
    left: 100%;
}

.nav .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
}

.nav .btn-primary:active {
    transform: translateY(-1px);
}

.nav .btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav .btn-primary:hover i {
    transform: translateX(3px);
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #f1f5f9;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.menu-toggle:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
    transform: rotate(90deg);
}

.menu-toggle.active {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
    transform: rotate(180deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 24px;
    }

    .nav {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
        height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(56, 189, 248, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        display: flex !important;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    }

    .nav-links a::before {
        bottom: 0;
        height: 100%;
        width: 4px;
        left: -24px;
        background: linear-gradient(180deg, #38bdf8, #0ea5e9);
    }

    .nav-links a:hover {
        transform: translateX(8px);
    }

    .nav .btn-primary {
        display: none;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    .logo-text,
    .logo-span {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
        height: 65px;
    }

    .nav-links {
        top: 65px;
        padding: 30px 20px;
    }

    .logo img {
        height: 36px;
        width: 36px;
    }

    .logo-text,
    .logo-span {
        font-size: 20px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }
}

/* ===== STICKY HEADER ANIMATION ===== */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.site-header {
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ACTIVE PAGE INDICATOR ===== */
.nav-links a[href*="contact"] {
    color: #38bdf8;
    font-weight: 600;
}

.nav-links a[href*="contact"]::before {
    width: 100%;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
}

/* ===== HOVER EFFECTS FOR ALL LINKS ===== */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-links a:hover::after {
    width: 300px;
    height: 300px;
}

/* ===== PREMIUM HERO SECTION ===== */
.hero-section {
    min-height: 70vh;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 32px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 20px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
}

.hero-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* ===== PROFESSIONAL CONTACT PAGE ===== */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 2px;
}

/* Enhanced Contact Info Card */
.contact-left {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-info-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.info-header i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-header h2 {
    font-size: 2rem;
    color: #f1f5f9;
    font-weight: 700;
}

.info-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.detail-item:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(30, 41, 59, 0.8);
    transform: translateX(8px);
}

.detail-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.detail-content h4 {
    color: #f1f5f9;
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 600;
}

.detail-content a,
.detail-content p {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.detail-content a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

.quick-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.8));
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.quick-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-contact-btn:hover::before {
    left: 100%;
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.9), rgba(71, 85, 105, 0.9));
}

/* ===== COMPACT QUICK CONTACT POPUP MODAL ===== */
.quick-contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px;
}

.quick-contact-modal {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    border-radius: 20px;
    width: 100%;
    max-width: 420px; /* Reduced from 520px */
    max-height: 90vh; /* Limit height to 90% of viewport */
    overflow-y: auto; /* Enable scrolling if needed */
    padding: 30px 24px; /* Reduced padding */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    animation: modalAppear 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.quick-contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9, #818cf8);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.quick-contact-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(30, 41, 59, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.quick-contact-close:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.2);
    transform: rotate(90deg);
    border-color: rgba(56, 189, 248, 0.4);
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 28px;
    padding-top: 10px;
}

.quick-contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.quick-contact-header h3 {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-contact-header p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

/* Contact Options Stack Layout */
.quick-contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.quick-contact-option {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.quick-contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-contact-option:hover::before {
    opacity: 1;
}

.quick-whatsapp-option {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.15) 100%);
    border: 2px solid rgba(37, 211, 102, 0.25);
    color: white;
}

.quick-whatsapp-option:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.quick-call-option {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%);
    border: 2px solid rgba(56, 189, 248, 0.25);
    color: white;
}

.quick-call-option:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

.quick-option-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.quick-whatsapp-option .quick-option-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.quick-call-option .quick-option-icon {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

.quick-contact-option:hover .quick-option-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.quick-option-content {
    flex: 1;
    text-align: left;
}

.quick-option-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.quick-option-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.quick-option-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.quick-contact-option:hover .quick-option-arrow {
    transform: translateX(5px);
}

/* Quick Contact Info - More Compact */
.quick-contact-info {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(10px);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.quick-info-item:last-child {
    margin-bottom: 0;
}

.quick-info-item i {
    color: #38bdf8;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.quick-info-item span {
    flex: 1;
    line-height: 1.4;
}

/* Responsive Styles for Quick Contact Modal */
@media (max-width: 480px) {
    .quick-contact-modal {
        max-width: 380px;
        padding: 24px 20px;
        max-height: 85vh;
    }
    
    .quick-contact-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 12px;
        right: 12px;
    }
    
    .quick-contact-header h3 {
        font-size: 1.375rem;
    }
    
    .quick-contact-header p {
        font-size: 0.9375rem;
    }
    
    .quick-contact-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .quick-contact-option {
        padding: 16px;
        gap: 12px;
    }
    
    .quick-option-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .quick-option-content h4 {
        font-size: 1.0625rem;
    }
    
    .quick-option-content p {
        font-size: 0.8125rem;
    }
    
    .quick-contact-info {
        padding: 16px;
    }
    
    .quick-info-item {
        font-size: 0.8125rem;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .quick-contact-modal {
        max-width: 340px;
        padding: 20px 16px;
    }
    
    .quick-contact-header h3 {
        font-size: 1.25rem;
    }
    
    .quick-contact-header p {
        font-size: 0.875rem;
    }
    
    .quick-contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .quick-contact-option {
        padding: 14px;
    }
    
    .quick-option-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Custom scrollbar for modal */
.quick-contact-modal::-webkit-scrollbar {
    width: 6px;
}

.quick-contact-modal::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3px;
}

.quick-contact-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 3px;
}

.quick-contact-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

/* Animation for quick contact modal */
@keyframes quickModalAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.quick-contact-modal {
    animation: quickModalAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile Safe Area Support */
@supports (padding: max(0px)) {
    .quick-contact-modal-overlay {
        padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    }
}

/* Premium Form Container */
.contact-right {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #94a3b8;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Enhanced Form Styling */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label::before {
    content: '•';
    color: #38bdf8;
    font-size: 1.5rem;
    line-height: 0;
}

.form-group input,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.7);
    color: #f1f5f9;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    background: rgba(30, 41, 59, 0.9);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.submit-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 20px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Premium Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 32px;
    display: none;
}

.spinner {
    border: 4px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    border-top: 4px solid #38bdf8;
    border-right: 4px solid #0ea5e9;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-indicator p {
    color: #94a3b8;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Enhanced Status Messages */
.form-status {
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 24px;
    display: none;
    text-align: center;
    font-weight: 500;
    font-size: 1.125rem;
    animation: slideDown 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-status.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: #4ade80;
    border: 2px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.form-status.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: #f87171;
    border: 2px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* ===== LUXURY MODAL DESIGN ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 32px;
    width: 90%;
    max-width: 520px;
    padding: 48px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    animation: modalAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9, #38bdf8);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(30, 41, 59, 0.8);
    border: none;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.close-modal:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 36px;
}

.modal-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 36px;
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
    animation: float 3s ease-in-out infinite;
}

.modal-header h3 {
    font-size: 2rem;
    color: #f1f5f9;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-header p {
    color: #94a3b8;
    font-size: 1.125rem;
}

/* Enhanced Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 28px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
}

.contact-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-option:hover::after {
    opacity: 1;
}

.whatsapp-option {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-option:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.call-option {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.call-option:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(56, 189, 248, 0.5);
}

.option-icon {
    font-size: 32px;
    margin-right: 24px;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.option-content {
    flex: 1;
    text-align: left;
}

.option-content h4 {
    font-size: 1.375rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.option-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.option-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-option:hover .option-arrow {
    transform: translateX(8px);
}

.contact-info {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 20px;
    padding: 32px;
    margin-top: 36px;
    border: 2px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 1.125rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #38bdf8;
    font-size: 1.25rem;
    width: 28px;
    text-align: center;
}

/* ===== PROFESSIONAL REVIEW SECTION ===== */
.review-section-container {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 32px;
}

.review-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.review-form-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.review-form-title {
    color: #f1f5f9;
    font-size: 1.75rem;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 3px solid #38bdf8;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.review-form-title i {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5em;
}

.review-toggle-btn {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.8));
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.review-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.9), rgba(71, 85, 105, 0.9));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Review Input Form */
.review-input-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-label {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-form-input,
.review-form-textarea {
    padding: 14px 18px;
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.8);
    color: #f1f5f9;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.review-form-input:focus,
.review-form-textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.review-stars-wrapper {
    display: flex;
    gap: 8px;
    font-size: 2rem;
}

.review-star {
    cursor: pointer;
    color: #475569;
    transition: all 0.2s;
    user-select: none;
}

.review-star:hover,
.review-star.active {
    color: #fbbf24;
    transform: scale(1.2);
}

/* ===== REVIEW FORM BUTTONS ===== */
.review-form-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.review-submit-btn {
    flex: 1;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.review-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.review-submit-btn:hover::before {
    left: 100%;
}

.review-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
}

.review-submit-btn:active {
    transform: translateY(-1px);
}

.review-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.2);
}

.review-submit-btn i {
    font-size: 1.1rem;
}

.review-cancel-btn {
    flex: 1;
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.8) 0%, rgba(100, 116, 139, 0.8) 100%);
    color: #e2e8f0;
    border: none;
    padding: 18px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-cancel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.review-cancel-btn:hover::before {
    left: 100%;
}

.review-cancel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.9) 0%, rgba(71, 85, 105, 0.9) 100%);
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.2);
}

.review-cancel-btn:active {
    transform: translateY(-1px);
}

.review-cancel-btn i {
    font-size: 1.1rem;
}

/* Responsive adjustments for review buttons */
@media (max-width: 768px) {
    .review-form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .review-submit-btn,
    .review-cancel-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .review-submit-btn,
    .review-cancel-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .review-submit-btn i,
    .review-cancel-btn i {
        font-size: 0.95rem;
    }
}

/* Review Display Card */
.reviews-display-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.2);
    max-height: 700px;
    display: flex;
    flex-direction: column;
}

.reviews-display-title {
    color: #f1f5f9;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.reviews-display-title i {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-stats-container {
    display: flex;
    gap: 15px;
}

.review-stat-box {
    text-align: center;
    padding: 15px 25px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    min-width: 100px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.review-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #38bdf8;
}

.review-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
}

.reviews-list-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 10px;
}

.review-item-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid #38bdf8;
    transition: all 0.3s;
    animation: review-fade-in 0.4s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.review-item-card:hover {
    background: rgba(30, 41, 59, 0.9);
    transform: translateX(5px);
    border-color: #0ea5e9;
}

.reviewer-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f1f5f9;
}

.review-item-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-item-location {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-item-comment {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
/* ===== ABOUT US SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a2332 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(129, 140, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.label-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
}

.label-text {
    color: #38bdf8;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card,
.vision-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
}

.vision-card::before {
    background: linear-gradient(180deg, #818cf8, #6366f1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(56, 189, 248, 0.4);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #38bdf8;
    font-size: 1.5rem;
}

.vision-card .icon-wrapper {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(99, 102, 241, 0.2));
    color: #818cf8;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 16px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Section */
.values-section h3 {
    font-size: 2rem;
    color: #f1f5f9;
    margin-bottom: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(56, 189, 248, 0.4);
}

.value-item i {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.25rem;
    color: #f1f5f9;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats Column */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats-card h3 {
    font-size: 1.75rem;
    color: #f1f5f9;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Team Card */
.team-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.team-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.team-header i {
    font-size: 2rem;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-header h3 {
    font-size: 1.75rem;
    color: #f1f5f9;
    font-weight: 700;
}

.team-description {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s ease;
}

.team-stat:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(5px);
}

.team-stat i {
    font-size: 1.5rem;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-stat div h4 {
    color: #f1f5f9;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.team-stat div p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* CTA Button */
.about-cta {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 22px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-cta:hover::before {
    left: 100%;
}

.about-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(56, 189, 248, 0.5);
}

/* Services Highlight */
.services-highlight {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.services-highlight h3 {
    font-size: 2rem;
    color: #f1f5f9;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-item i {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 24px;
    background: rgba(56, 189, 248, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-item h4 {
    font-size: 1.25rem;
    color: #f1f5f9;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 24px;
    }
    
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-subtitle {
        font-size: 1.125rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-highlight {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .mission-card,
    .vision-card,
    .stats-card,
    .team-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-section h3,
    .services-highlight h3 {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 18px 32px;
        font-size: 1rem;
    }
}

/* Animation for stats counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 0.5s ease-out forwards;
}

/* ===== PREMIUM FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    margin-top: 100px;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9, #38bdf8);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 40px;
    position: relative;
    z-index: 2;
}

/* ===== FOOTER MAIN SECTION ===== */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.footer-brand img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-logo-span {
    font-size: 24px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1;
}

.footer-logo p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 320px;
    margin-top: 12px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.link-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 2px;
}

.link-column a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    position: relative;
}

.link-column a::before {
    content: '→';
    color: #38bdf8;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: #38bdf8;
    transform: translateX(8px);
}

.link-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.link-column p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin: 8px 0;
}

.link-column a[href^="mailto:"],
.link-column a[href^="callto:"] {
    color: #38bdf8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-column a[href^="mailto:"]:hover,
.link-column a[href^="callto:"]:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    color: white;
    border-color: rgba(56, 189, 248, 0.5);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

/* WhatsApp specific styling */
.social-links a[href*="whatsapp"]:hover::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Copyright Section */
.copyright {
    text-align: right;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.copyright p {
    margin-bottom: 8px;
}

.copyright a {
    color: #38bdf8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.copyright a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-container {
        padding: 0 40px 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 60px;
        padding-top: 60px;
    }

    .footer-main {
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .copyright {
        text-align: center;
        order: -1;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        padding: 0 24px 32px;
    }

    .footer-brand img {
        height: 40px;
        width: 40px;
    }

    .footer-logo-text,
    .footer-logo-span {
        font-size: 20px;
    }

    .footer-logo p {
        font-size: 0.95rem;
    }

    .link-column h4 {
        font-size: 1.1rem;
    }

    .link-column a {
        font-size: 0.95rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .copyright {
        font-size: 0.9rem;
    }
}

/* ===== FOOTER BACKGROUND PATTERN ===== */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ===== ANIMATION FOR FOOTER ELEMENTS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-main>*,
.footer-links>*,
.footer-bottom>* {
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-main>* {
    animation-delay: 0.1s;
}

.footer-links>*:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-links>*:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-links>*:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-bottom>*:nth-child(1) {
    animation-delay: 0.5s;
}

.footer-bottom>*:nth-child(2) {
    animation-delay: 0.6s;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes review-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-page {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-left {
        position: static;
    }

    .review-main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .contact-page,
    .review-section-container {
        padding: 0 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #f1f5f9;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-right,
    .review-form-card,
    .reviews-display-card {
        padding: 32px 24px;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .detail-icon {
        margin: 0 auto 16px;
    }

    .contact-modal {
        padding: 40px 24px;
        width: 95%;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .reviews-stats-container {
        flex-direction: column;
        align-items: center;
    }

    .review-stat-box {
        min-width: 120px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

/* Glass morphism effect for form inputs on focus */
.form-group input:focus,
.form-group textarea:focus,
.review-form-input:focus,
.review-form-textarea:focus {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(20px);
}