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

:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e2f44;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --gold: #d4af37;
    --success: #27ae60;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
    --radius-sm: 8px;
}

* { 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; }

/* ============== TOP BAR ============== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--accent);
}

.top-bar-left span {
    margin-right: 20px;
    opacity: 0.9;
}

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

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

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

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

/* ============== NAVBAR ============== */
#mainNavbar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    padding: 14px 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}

.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: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #f0d27a 50%, #fff 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: rgba(255,255,255,0.65);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !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: #fff !important;
    background: rgba(255,255,255,0.15);
}

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

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

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

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

.dropdown-menu-services .dropdown-item i {
    width: 24px;
    margin-right: 8px;
    color: var(--primary);
}

.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-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.85), rgba(26,82,118,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--secondary), #c0392b);
    color: #fff;
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231,76,60,0.5);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    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(--accent);
    width: 35px;
    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(10px);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
}

@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, var(--dark), #16213e);
    color: #fff;
}

.section-gray {
    background: #f4f6f9;
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    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: linear-gradient(135deg, var(--accent), var(--gold));
    color: var(--dark);
}

.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(--accent);
}

.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(--accent));
    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(--accent));
    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 {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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(26,82,118,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(--secondary);
    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(26,82,118,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%;
    height: 400px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary), #c0392b);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(231,76,60,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: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.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: #fff;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--accent);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    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%;
    height: 250px;
    object-fit: cover;
    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);
}

.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(26,82,118,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(--secondary);
    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(26,82,118,0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    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(--secondary), #c0392b);
    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.05);
    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(--secondary);
    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(--secondary);
}

/* ============== 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(26,82,118,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(26,82,118,0.95), 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(26,82,118,0.95), rgba(26,82,118,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, #0a1628, var(--dark));
    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(--secondary), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 25px rgba(231,76,60,0.4);
    z-index: 999;
    animation: pulse-red 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-red {
    0% { box-shadow: 0 0 0 0 rgba(231,76,60,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(231,76,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(231,76,60,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(26,82,118,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, var(--primary-dark), var(--primary));
    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) {
    .hero-section { height: 60vh; min-height: 450px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .section { padding: 50px 0; }
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 1.8rem; }
    .navbar-collapse {
        background: var(--primary-dark);
        border-radius: var(--radius);
        padding: 15px;
        margin-top: 10px;
    }
    .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; }
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev { display: none; }
    .service-card-image { height: 180px; }
    .about-image-wrapper img { height: 300px; }
    .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; }
    .hero-section { height: 75vh; min-height: 420px; }
    .hero-content { padding: 0 15px 50px; }
    .hero-slider .swiper-pagination { bottom: 12px; }
    .hero-content h1 { font-size: 1.6rem; margin-bottom: 12px; }
    .hero-content p { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .btn-hero { width: 100%; max-width: 280px; justify-content: center; padding: 12px 24px; font-size: 13px; }
    .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-image { height: 160px; }
    .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 { height: 250px; }
    .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 img { height: 160px; }
    .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; }
    .work-card img { height: 180px; }
    .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-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; }
    .hero-content h1 { font-size: 1.35rem; }
    .hero-content p { font-size: 0.85rem; }
    .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; }
    .gallery-item img { height: 130px; }
    .service-card-image { height: 140px; }
    .work-card img { height: 150px; }
    .about-image-wrapper img { height: 200px; }
    .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(26,82,118,0.1);
    outline: none;
}

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