/* ============================================
   PROFESYONEL HALI YIKAMA - ANA STİL DOSYASI
   Modern, Hızlı, Mobil Uyumlu - Beyaz Tema
   ============================================ */

:root {
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --primary-dark: #0369a1;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --gold: #eab308;
    --success: #10b981;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(14,165,233,0.08);
    --shadow-lg: 0 12px 40px rgba(14,165,233,0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 20px;
    --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ============== BUBBLES ANIMATION ============== */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -80px;
    background: radial-gradient(circle at 30% 30%, rgba(14,165,233,0.25), rgba(6,182,212,0.12));
    border: 1.5px solid rgba(14,165,233,0.2);
    border-radius: 50%;
    animation: bubbleRise linear infinite, bubbleWobble 3s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    backdrop-filter: blur(2px);
    box-shadow: inset 0 -4px 8px rgba(14,165,233,0.12), 0 4px 12px rgba(14,165,233,0.08), inset 0 2px 4px rgba(255,255,255,0.3);
}

.bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0.1));
    border-radius: 50%;
    transform: rotate(-30deg);
}

.bubble::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 15%;
    width: 18%;
    height: 18%;
    background: radial-gradient(circle, rgba(255,255,255,0.5), transparent);
    border-radius: 50%;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.3);
        opacity: 0;
    }
    5% {
        opacity: 0.9;
        transform: translateY(-5vh) translateX(5px) scale(1);
    }
    50% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-110vh) translateX(var(--drift, 40px)) scale(0.4);
        opacity: 0;
    }
}

@keyframes bubbleWobble {
    0%, 100% { margin-left: 0; }
    25% { margin-left: 8px; }
    50% { margin-left: -5px; }
    75% { margin-left: 6px; }
}

@keyframes bubblePop {
    0% { transform: scale(1); opacity: 0.9; filter: brightness(1); }
    20% { transform: scale(1.4); opacity: 0.7; filter: brightness(1.5); }
    40% { transform: scale(1.6); opacity: 0.4; filter: brightness(2); }
    100% { transform: scale(0); opacity: 0; filter: brightness(3); }
}

@keyframes sparkle {
    0% { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--sx, 20px), var(--sy, -20px)) scale(0); opacity: 0; }
}

.bubble.pop {
    animation: bubblePop 0.4s ease-out forwards !important;
}

.bubble-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(14,165,233,0.8), rgba(6,182,212,0.4));
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 0.5s ease-out forwards;
    z-index: 1;
}

/* ============== TOP BAR ============== */
.top-bar {
    background: var(--white);
    color: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(14,165,233,0.1);
    position: relative;
    z-index: 10;
}

.top-bar-left span {
    margin-right: 20px;
    opacity: 0.8;
    color: var(--gray);
}

.top-bar-left span i {
    margin-right: 6px;
    color: var(--primary);
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    color: var(--gray);
    margin-left: 15px;
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.top-bar-right a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============== NAVBAR ============== */
#mainNavbar {
    background: var(--white) !important;
    padding: 14px 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(14,165,233,0.08);
    position: relative;
    border-bottom: 2px solid rgba(14,165,233,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    flex-shrink: 0;
}

.brand-logo-svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
    transition: transform 0.4s ease;
}

.navbar-brand:hover .brand-logo-svg {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.brand-slogan {
    font-size: 11px;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(14,165,233,0.08);
}

.navbar-nav .nav-link i {
    margin-right: 4px;
}

.dropdown-menu-services {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 15px;
    min-width: 480px;
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu-services.show {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.dropdown-menu-services li {
    list-style: none;
}

.dropdown-menu-services .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu-services .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: translateX(3px);
}

.dropdown-menu-services .dropdown-item i {
    width: 22px;
    margin-right: 6px;
    color: var(--primary);
    font-size: 13px;
}

.dropdown-menu-services .dropdown-item:hover i {
    color: var(--accent);
}

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

/* ============== HERO SLIDER ============== */
.hero-slider { height: 100%; }
.swiper-slide-active .hero-slide-img {
    animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

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

/* ============== SECTION STYLES ============== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    color: #fff;
}

.section-gray {
    background: #f0f9ff;
}

.section-gradient {
    background: linear-gradient(135deg, #0369a1, #0ea5e9, #38bdf8);
    color: #fff;
}

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

.section-title .badge-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-dark .section-title .badge-label {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(10px);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.section-title h2 span {
    color: var(--primary-light);
}

.section-dark .section-title h2 span {
    color: var(--primary-light);
}

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

.section-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

.section-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============== SERVICES SECTION ============== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

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

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

.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(14,165,233,0.4);
    z-index: 5;
}

.service-card-body {
    padding: 35px 25px 25px;
}

.service-card-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ============== ABOUT SECTION ============== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.about-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    background: #f8fafc;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(14,165,233,0.3);
    z-index: 5;
}

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

.about-experience-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
}

.about-features li i {
    color: var(--success);
    font-size: 16px;
}

/* ============== STATS SECTION ============== */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(14,165,233,0.08);
    border-bottom: 1px solid rgba(14,165,233,0.08);
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 80px;
}

.stat-item {
    text-align: center;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

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

/* ============== GALLERY SECTION ============== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay h6 {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.gallery-item-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ============== REFERENCES SECTION ============== */
.reference-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-left: 4px solid var(--primary);
    border-top: 1px solid rgba(14,165,233,0.06);
}

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

.reference-card .quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.1;
}

.reference-card .stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 14px;
}

.reference-card p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.reference-card .customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reference-card .customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.reference-card .customer-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.reference-card .customer-title {
    font-size: 12px;
    color: var(--gray);
}

/* ============== PRICE SECTION ============== */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}

.price-table th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.price-table tbody tr {
    transition: var(--transition);
}

.price-table tbody tr:hover {
    background: rgba(14,165,233,0.03);
}

.price-table .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 13px;
    margin-right: 8px;
}

.price-table .current-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 18px;
}

.price-table .price-badge {
    background: linear-gradient(135deg, var(--success), #2ecc71);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

/* ============== SERVICE AREAS ============== */
.area-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.area-card .city-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 20px;
}

.area-card h6 {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.area-card p {
    font-size: 11px;
    color: var(--gray);
    margin: 0;
}

/* ============== CONTACT SECTION ============== */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius);
    padding: 30px;
    color: #fff;
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-info-card h5 {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info-card p,
.contact-info-card a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.contact-info-card a:hover {
    color: #fff;
}

/* ============== CTA SECTION ============== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

.btn-cta {
    background: #fff;
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* ============== PROCESS SECTION ============== */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(14,165,233,0.3);
}

.process-step h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step p {
    font-size: 13px;
    color: var(--gray);
}

/* ============== WORKS / PORTFOLIO SECTION ============== */
.work-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    transition: var(--transition);
}

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

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

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,105,161,0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
}

.work-card:hover .work-card-overlay {
    background: linear-gradient(to top, rgba(3,105,161,0.95), rgba(14,165,233,0.3) 60%);
}

.work-card-overlay h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.work-card-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
}

/* ============== FOOTER ============== */
.footer {
    background: linear-gradient(135deg, #0c1929, #0f172a);
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget h4 i {
    color: var(--accent);
}

.footer-logo-svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-widget h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    font-size: 18px;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    width: 16px;
}

.footer-contact a {
    color: rgba(255,255,255,0.65);
}

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

.footer-gallery-links {
    background: rgba(255,255,255,0.03);
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-gallery-links a {
    color: rgba(255,255,255,0.7);
    margin: 0 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-gallery-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

/* ============== WHATSAPP & PHONE FLOAT ============== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 999;
    animation: pulse-green 2s infinite;
}

.phone-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 25px rgba(14,165,233,0.4);
    z-index: 999;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(14,165,233,0); }
    100% { box-shadow: 0 0 0 0 rgba(14,165,233,0); }
}

/* ============== SCROLL TO TOP ============== */
.scroll-top {
    position: fixed;
    bottom: 170px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(14,165,233,0.3);
}

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

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

/* ============== COOKIE CONSENT ============== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 3px solid var(--primary);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 36px;
    color: var(--accent);
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.cookie-text p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-settings {
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.cookie-option strong {
    display: block;
    font-size: 13px;
}

.cookie-option small {
    color: var(--gray);
    font-size: 11px;
}

.cookie-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: var(--transition);
}

.cookie-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--success);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
}

/* ============== PAGE HEADER ============== */
.page-header {
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="50" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat;
    background-size: cover;
}

.page-header h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.page-header .breadcrumb {
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.page-header .breadcrumb-item.active {
    color: var(--accent);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ============== QUALITY PAGE ============== */
.quality-content h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin: 25px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-content h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

.quality-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============== PARTICLES / DECORATIVE ============== */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 991px) {
    .section { padding: 50px 0; }
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 1.8rem; }
    .navbar-toggler { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .about-experience-badge { right: 10px; bottom: -10px; }
    .brand-logo-svg { width: 44px; height: 44px; }
    .brand-name { font-size: 16px; }
    .brand-slogan { font-size: 9px; letter-spacing: 1.5px; }
    .about-image-wrapper img { max-height: 350px; }
    .reference-card { padding: 20px; }
}

@media (max-width: 767px) {
    .top-bar { padding: 6px 0; font-size: 11px; }
    .top-bar-left span { margin-right: 10px; font-size: 11px; }
    .top-bar-right a { margin-left: 10px; font-size: 14px; }
    .section { padding: 35px 0; }
    .section-title { margin-bottom: 30px; }
    .section-title h2 { font-size: 1.4rem; }
    .section-title p { font-size: 0.9rem; }
    .section-title .badge-label { font-size: 11px; padding: 5px 14px; letter-spacing: 1px; }
    .service-card-icon { width: 42px; height: 42px; font-size: 18px; bottom: -20px; right: 15px; }
    .service-card-body { padding: 28px 18px 18px; }
    .service-card-body h5 { font-size: 1rem; }
    .service-card-body p { font-size: 0.8rem; margin-bottom: 10px; }
    .service-card:hover { transform: none; }
    .about-image-wrapper img { max-height: 280px; }
    .about-experience-badge { padding: 14px; right: 5px; bottom: -15px; }
    .about-experience-badge .number { font-size: 1.8rem; }
    .about-experience-badge span { font-size: 10px; }
    .about-text p { font-size: 14px; }
    .about-features li { font-size: 13px; }
    .stats-section { padding: 40px 0; }
    .stat-icon { width: 55px; height: 55px; font-size: 22px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 11px; }
    .process-step h5 { font-size: 0.9rem; }
    .process-step p { font-size: 0.8rem; }
    .gallery-filters { gap: 6px; margin-bottom: 20px; }
    .gallery-filter-btn { padding: 6px 14px; font-size: 11px; }
    .gallery-item-overlay { padding: 10px; }
    .gallery-item-overlay h6 { font-size: 11px; }
    .reference-card { padding: 18px; }
    .reference-card p { font-size: 13px; margin-bottom: 12px; }
    .reference-card .customer-avatar { width: 40px; height: 40px; font-size: 15px; }
    .reference-card .customer-name { font-size: 14px; }
    .price-table th { padding: 12px 10px; font-size: 12px; }
    .price-table td { padding: 10px; font-size: 12px; }
    .price-table .current-price { font-size: 15px; }
    .price-table .old-price { font-size: 11px; }
    .price-table .price-badge { font-size: 10px; padding: 3px 8px; }
    .area-card { padding: 14px 8px; }
    .area-card h6 { font-size: 12px; margin-bottom: 0; }
    .city-icon { font-size: 18px; margin-bottom: 5px; }
    .cta-section { padding: 40px 0; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section p { font-size: 14px; }
    .btn-cta { padding: 12px 28px; font-size: 14px; }
    .contact-form-wrapper { padding: 20px; }
    .contact-info-card { padding: 20px 10px; }
    .contact-info-card i { font-size: 28px; }
    .contact-info-card h5 { font-size: 14px; }
    .contact-info-card p { font-size: 13px; }
    .footer-cta-band { padding: 25px 0 !important; }
    .footer-cta-band h6 { font-size: 13px !important; }
    .footer-cta-band p { font-size: 11px !important; }
    .footer-bottom p { font-size: 11px !important; }
    .footer-bottom p span { font-size: 11px; }
    .footer-top { padding: 35px 0 15px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
    .page-header { padding: 40px 0 30px; }
    .page-header h1 { font-size: 1.4rem; }
    .whatsapp-float, .phone-float { width: 48px; height: 48px; right: 12px; }
    .whatsapp-float { bottom: 75px; font-size: 22px; }
    .phone-float { bottom: 18px; font-size: 18px; }
    .scroll-top { bottom: 135px; right: 12px; width: 38px; height: 38px; }
    .brand-logo-svg { width: 38px; height: 38px; }
    .brand-name { font-size: 14px; }
    .brand-slogan { font-size: 8px; letter-spacing: 1px; }
    #mainNavbar { padding: 10px 0; }
}

@media (max-width: 480px) {
    .top-bar-left span:not(:first-child) { display: none; }
    .section-title h2 { font-size: 1.25rem; }
    .stat-icon { width: 46px; height: 46px; font-size: 18px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 10px; letter-spacing: 0.5px; }
    .about-image-wrapper img { max-height: 220px; }
    .reference-card { padding: 15px; }
    .reference-card p { font-size: 12px; line-height: 1.6; }
    .area-card { padding: 10px 5px; border-radius: 10px; }
    .area-card h6 { font-size: 11px; }
    .city-icon { font-size: 16px; }
    .price-table th, .price-table td { padding: 8px 6px; font-size: 11px; }
    .price-table .current-price { font-size: 13px; }
    .btn-hero { padding: 10px 20px; font-size: 12px; }
    .btn-cta { padding: 10px 22px; font-size: 13px; }
    .brand-logo-svg { width: 34px; height: 34px; }
    .brand-name { font-size: 13px; }
    .brand-slogan { display: none; }
    .contact-info-card { margin-bottom: 0; }
    .page-header h1 { font-size: 1.2rem; }
    .page-header { padding: 30px 0 20px; }
}


/* ============== MISC UTILITIES ============== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-pattern {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect fill="none" width="60" height="60"/><path d="M30 0L30 60M0 30L60 30" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Service area search */
.area-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.area-search input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 15px;
    transition: var(--transition);
}

.area-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
    outline: none;
}

.area-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

/* ============== HERO SLIDER OPTIMIZATION ============== */
.hero-section { position: relative; overflow: hidden; }
.hero-slide { position: relative; width: 100%; height: 80vh; min-height: 500px; overflow: hidden; }
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.hero-slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.55), rgba(3,105,161,0.35));
}
.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}
.hero-content h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); color: #fff; }
.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-3px); }

.hero-slider .swiper-pagination-bullet { background: #fff; opacity: 0.5; width: 12px; height: 12px; }
.hero-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--primary); width: 30px; border-radius: 6px; }
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.15);
    width: 50px; height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.hero-slider .swiper-button-next::after, .hero-slider .swiper-button-prev::after { font-size: 18px; }

@media (max-width: 991px) {
    .hero-slide { height: 60vh; min-height: 400px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { width: 40px; height: 40px; }
}
@media (max-width: 767px) {
    .hero-slide { height: 55vh; min-height: 350px; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.85rem; margin-bottom: 18px; }
    .btn-hero { padding: 10px 20px; font-size: 13px; }
    .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { display: none; }
}
@media (max-width: 480px) {
    .hero-slide { height: 50vh; min-height: 300px; }
    .hero-content h1 { font-size: 1.25rem; }
    .hero-content p { font-size: 0.8rem; }
    .btn-hero { padding: 8px 16px; font-size: 12px; }
}

/* ============== BLOG CARDS ============== */
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f8fafc;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}
.blog-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.2;
}
.blog-card-date .day { display: block; font-size: 20px; font-weight: 800; }
.blog-card-date .month { display: block; font-size: 11px; text-transform: uppercase; opacity: 0.8; }
.blog-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}
.blog-card-body h5 a {
    color: var(--dark);
    text-decoration: none;
}
.blog-card-body h5 a:hover { color: var(--primary); }
.blog-card-body p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}
.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-read-more:hover { color: var(--primary-dark); gap: 10px; }
.blog-read-more i { font-size: 11px; transition: var(--transition); }

/* Blog Detail */
.blog-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 25px;
}
.blog-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background: #f8fafc;
}
.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 13px;
}
.blog-detail-meta i { color: var(--primary); margin-right: 5px; }
.blog-detail-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.4;
}
.blog-detail-content {
    color: #444;
    line-height: 2;
    font-size: 15px;
}
.blog-detail-content h2 { font-size: 1.5rem; color: var(--dark); margin: 30px 0 15px; }
.blog-detail-content h3 { font-size: 1.2rem; color: var(--primary-dark); margin: 25px 0 12px; }
.blog-detail-content h4 { font-size: 1.1rem; color: var(--dark); margin: 20px 0 10px; }
.blog-detail-content p { margin-bottom: 15px; }
.blog-detail-content ul, .blog-detail-content ol { margin: 15px 0; padding-left: 25px; }
.blog-detail-content li { margin-bottom: 8px; }
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}
.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}
.sidebar-widget-title i { color: var(--primary); margin-right: 8px; }
.sidebar-post {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: var(--transition);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { padding-left: 5px; }
.sidebar-post h6 {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.5;
}
.sidebar-post:hover h6 { color: var(--primary); }
.sidebar-post-date { color: var(--gray); font-size: 11px; }
.sidebar-post-date i { margin-right: 4px; }

@media (max-width: 767px) {
    .blog-detail-image img { max-height: 300px; }
    .blog-detail-title { font-size: 1.4rem; }
    .blog-sidebar { position: static; margin-top: 30px; }
}

/* ============== FAQ / SSS STYLES ============== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(14,165,233,0.15);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { background: rgba(14,165,233,0.03); }
.faq-q-content { display: flex; align-items: center; gap: 15px; flex: 1; }
.faq-number {
    width: 36px; height: 36px; min-width: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.faq-item.active .faq-number {
    background: linear-gradient(135deg, var(--accent), #d97706);
}
.faq-question h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}
.faq-icon {
    width: 30px; height: 30px; min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    display: none;
    padding: 0 25px 20px 76px;
}
.faq-answer p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* SSS Contact Box */
.sss-contact-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.sss-contact-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.sss-contact-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(14,165,233,0.3);
}
.sss-contact-box h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.sss-contact-box > p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.sss-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.sss-btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.sss-btn:hover { transform: translateY(-3px); }
.sss-btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.sss-btn-whatsapp:hover { color: #fff; box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.sss-btn-phone {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.sss-btn-phone:hover { color: #fff; box-shadow: 0 8px 25px rgba(14,165,233,0.4); }
.sss-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 28px;
    font-size: 14px;
}
.sss-btn-outline:hover { background: var(--primary); color: #fff; }
.sss-contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.sss-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}
.sss-info-item i { color: var(--primary); font-size: 16px; }
.sss-info-item a { color: var(--gray); text-decoration: none; }
.sss-info-item a:hover { color: var(--primary); }
.sss-contact-extra {
    padding-top: 25px;
    border-top: 1px solid #eee;
}
.sss-contact-extra p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .faq-question { padding: 15px 18px; }
    .faq-answer { padding: 0 18px 15px 55px; }
    .faq-number { width: 30px; height: 30px; min-width: 30px; font-size: 12px; }
    .faq-question h5 { font-size: 13px; }
    .sss-contact-box { padding: 30px 20px; }
    .sss-contact-box h2 { font-size: 1.3rem; }
    .sss-btn { padding: 12px 24px; font-size: 14px; }
    .sss-contact-info { flex-direction: column; gap: 10px; }
}

/* ============== IMAGE OPTIMIZATION ============== */
.service-card-image img,
.work-card img,
.gallery-item img,
.blog-card-image img {
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
}

.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #f8fafc;
}
.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}
.work-card:hover img { transform: scale(1.08); }
.work-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(15,23,42,0.85));
    padding: 25px 20px 20px;
    color: #fff;
}
.work-card-overlay h5 { font-size: 16px; margin-bottom: 5px; }
.work-card-overlay p { font-size: 13px; opacity: 0.85; margin: 0; }

@media (max-width: 767px) {
    .work-card { aspect-ratio: 4/3; }
    .work-card-overlay h5 { font-size: 14px; }
    .work-card-overlay p { font-size: 12px; }
}

/* ============== MOBILE MENU ============== */
.mobile-menu-btn {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    z-index: 1060;
    position: relative;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1070;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: #fff;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    overflow: hidden;
}
.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    min-height: 60px;
}
.mobile-menu-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-nav-links > li {
    border-bottom: 1px solid #f5f5f5;
}
.mobile-nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > a:active {
    background: rgba(14,165,233,0.06);
    color: var(--primary);
}
.mobile-nav-links > li > a i {
    width: 22px;
    text-align: center;
    color: var(--primary);
    font-size: 15px;
}
.mobile-arrow {
    margin-left: auto;
    font-size: 11px !important;
    color: var(--gray) !important;
    transition: transform 0.3s ease;
    width: auto !important;
}
.mobile-nav-group.open .mobile-arrow { transform: rotate(180deg); }

.mobile-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f8fafc;
}
.mobile-nav-group.open .mobile-sub-menu {
    max-height: 800px;
}
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px 11px 42px;
    color: var(--gray);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.mobile-sub-menu li a:hover {
    color: var(--primary);
    padding-left: 48px;
}
.mobile-sub-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 13px;
}

.mobile-menu-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fafafa;
}
.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.mobile-menu-cta:hover { color: #fff; transform: translateY(-1px); }
.mobile-menu-cta-wp {
    background: #25d366;
}

/* Desktop nav wrapper */
.desktop-nav {
    flex: 1;
    align-items: center;
}

/* Body scroll lock when mobile menu open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ============== PERFORMANCE - REDUCE MOBILE JANK ============== */
@media (max-width: 991px) {
    .bubbles-container { display: none !important; }
    .bubble { display: none !important; }
    * { -webkit-tap-highlight-color: transparent; }
}

/* Lazy loaded images */
img[loading="lazy"] {
    opacity: 1;
}

/* GPU acceleration for animated elements */
.swiper-slide,
.hero-slide-img,
.service-card,
.blog-card,
.work-card,
.gallery-item {
    will-change: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Disable heavy hover effects on touch */
@media (hover: none) {
    .service-card:hover,
    .blog-card:hover,
    .work-card:hover { transform: none !important; }
    .blog-card:hover .blog-card-image img,
    .work-card:hover img { transform: none !important; }
}
