/* Akit Döşeme - Vibrant & Lively Color Theme CSS */

:root {
    /* Color Palette - Vibrant, Fun, Energetic */
    --primary: #FF5A5F;        /* Bright Coral / Pinkish Red */
    --primary-light: #FF7E82;
    --primary-dark: #E0474C;
    --primary-glow: rgba(255, 90, 95, 0.4);
    
    --secondary: #00A699;      /* Energetic Teal */
    --secondary-light: #33B7AD;
    
    --accent: #FFB400;         /* Cheerful Sun Yellow */
    --accent-light: #FFC433;
    
    --bg-main: #FFFFFF;        /* Bright White */
    --bg-light: #F7F9FA;       /* Very soft bluish gray */
    --bg-colorful: #FFF5F6;    /* Soft pinkish tint */
    
    --text-dark: #484848;      /* Softened dark gray (not pure black) */
    --text-main: #5C5C5C;      /* Friendly gray for reading */
    --text-muted: #8F8F8F;
    
    /* Typography */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Layout & Styling */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Playful blob shape */
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(255, 90, 95, 0.15);
    --shadow-color: 0 15px 35px rgba(0, 166, 153, 0.2);
    
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.bg-wave-light { background-color: var(--bg-light); }
.bg-colorful-light { background-color: var(--bg-colorful); }

.text-center { text-align: center; }
.text-accent { color: var(--primary); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Sections & Typography */
.section-label {
    display: inline-block;
    background-color: rgba(0, 166, 153, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF385C);
    color: white;
}

.btn-glow {
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px var(--primary-glow);
    color: white;
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

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

.btn-glow-white {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-link {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Navbar - Light & Bouncy */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

.logo-icon-bg {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    animation: blobMorph 5s infinite alternate ease-in-out;
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a:not(.btn-nav) {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--bg-colorful);
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 140px;
    background: linear-gradient(180deg, var(--bg-colorful) 0%, var(--bg-main) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-shapes .shape {
    position: absolute;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -100px; left: -100px;
    border-radius: 50%;
}
.shape-2 {
    width: 500px; height: 500px;
    background: var(--secondary);
    bottom: -100px; right: -100px;
    border-radius: 50%;
}
.shape-3 {
    width: 300px; height: 300px;
    background: var(--accent);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--secondary);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px; height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.stat div {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.blob-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    border-radius: var(--radius-blob);
    z-index: -1;
    transform: rotate(5deg) scale(1.05);
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 10px solid white;
    transform: rotate(-2deg);
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-img {
    transform: rotate(0deg) scale(1.02);
}

.user-card {
    position: absolute;
    bottom: 20px; left: -20px;
    background: white;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.user-card p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.wave-bottom {
    position: absolute;
    bottom: -5px; left: 0; width: 100%;
    line-height: 0;
    z-index: 10;
}

.wave-bottom fill, .wave-bottom path {
    fill: var(--bg-light);
}

/* Services */
.services-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transform: translate(30%, -30%);
    transition: var(--transition);
}

.service-card.color-1::before { background-color: var(--primary); }
.service-card.color-2::before { background-color: var(--secondary); }
.service-card.color-3::before { background-color: var(--accent); }

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

.service-card:hover::before {
    transform: translate(20%, -20%) scale(1.5);
    opacity: 0.15;
}

.service-icon-wrapper {
    width: 70px; height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.color-1 .service-icon-wrapper { background: rgba(255, 90, 95, 0.1); color: var(--primary); }
.color-2 .service-icon-wrapper { background: rgba(0, 166, 153, 0.1); color: var(--secondary); }
.color-3 .service-icon-wrapper { background: rgba(255, 180, 0, 0.1); color: var(--accent); }

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--text-main);
}

/* Color Banner */
.color-banner {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    overflow: hidden;
    color: white;
}

.color-banner h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.color-banner p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.banner-circle {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.1;
}

.b-1 { width: 300px; height: 300px; top: -100px; left: 10%; }
.b-2 { width: 500px; height: 500px; bottom: -200px; right: -100px; }
.b-3 { width: 150px; height: 150px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.05; }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lead {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p:not(.lead) {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-boxes {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    background: var(--bg-colorful);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.feat-box {
    flex: 1;
}

.fb-icon {
    width: 50px; height: 50px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

.feat-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feat-box p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.fb-divider {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 90, 95, 0.2);
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-stack img {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.img-front {
    width: 70%;
    height: 350px;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid white;
}

.img-back {
    width: 65%;
    height: 400px;
    top: 0;
    right: 0;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    top: 30%;
    left: -20px;
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    z-index: 3;
    box-shadow: var(--shadow-color);
    animation: float 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
#contact {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.wave-top-contact {
    position: absolute;
    top: -5px; left: 0; width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-top-contact path {
    fill: var(--bg-colorful);
}

.contact-header {
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-card-sidebar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 4rem 3rem;
}

.contact-card-sidebar h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card-sidebar p {
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--accent);
}

.cd-text {
    display: flex;
    flex-direction: column;
}

.cd-text span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cd-text strong {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.social-circle:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-card-form {
    padding: 4rem;
}

.contact-card-map {
    overflow: hidden;
    min-height: 450px;
}

.contact-card-map iframe {
    display: block;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.dynamic-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-box {
    position: relative;
}

.input-box input,
.input-box textarea,
.input-box select {
    width: 100%;
    padding: 1.2rem 1rem;
    border: none;
    border-bottom: 2px solid #E0E0E0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.input-box select {
    color: var(--text-muted);
}

.input-box label {
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
}

/* Float label effect */
.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label {
    top: -0.5rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
    border-bottom-color: var(--primary);
}

.btn-submit-modern {
    align-self: flex-start;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
}

/* Footer */
.colorful-footer {
    background-color: var(--bg-light);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.colorful-footer .logo {
    justify-content: center;
    margin-bottom: 1rem;
}
.colorful-footer p {
    color: var(--text-muted);
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.footer-bottom-text {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    width: 100%;
}

/* ===== STATS COUNTER ===== */
.counter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-item {
    color: white;
}

.counter-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-number::after {
    content: '+';
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ps-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border: 4px solid var(--bg-light);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.ps-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    width: 100%;
}

.ps-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.ps-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 90, 95, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
}

.ps-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.ps-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 280px;
}

.gallery-wide .gallery-img {
    height: 280px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 90, 95, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-tag {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.tag-after::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.area-chip {
    background: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.area-chip i {
    color: var(--primary);
    font-size: 0.9rem;
}

.area-chip:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 3.5rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Responsive additions */
@media (max-width: 992px) {
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
    .process-line { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-wide { grid-column: span 2; }
    .trust-grid { justify-content: center; }
}

@media (max-width: 768px) {
    .process-timeline { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-wide { grid-column: span 1; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .counter-number { font-size: 2.2rem; }
}

.footer-bubble {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.fb-1 { width: 200px; height: 200px; background: rgba(255, 90, 95, 0.05); top: -50px; left: -50px; }
.fb-2 { width: 300px; height: 300px; background: rgba(0, 166, 153, 0.05); bottom: -100px; right: 10%; }
.fb-3 { width: 100px; height: 100px; background: rgba(255, 180, 0, 0.1); top: 30%; right: -20px; }

/* ===== SERVICE DETAIL PAGES ===== */

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-colorful) 0%, var(--bg-main) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero-shapes .shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
}

.page-hero-shapes .shape-1 {
    width: 350px; height: 350px;
    background: var(--primary);
    top: -100px; right: -50px;
    border-radius: 50%;
}

.page-hero-shapes .shape-2 {
    width: 250px; height: 250px;
    background: var(--secondary);
    bottom: -50px; left: -50px;
    border-radius: 50%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--primary);
    font-weight: 700;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Article Layout */
.article-section {
    padding: 4rem 0 6rem;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: flex-start;
}

.article-body {
    min-width: 0;
}

.article-block {
    margin-bottom: 3.5rem;
}

.article-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.article-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.article-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-list li i {
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.compare-card {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.compare-card.good {
    background: rgba(0, 166, 153, 0.08);
    border: 1px solid rgba(0, 166, 153, 0.2);
}

.compare-card.bad {
    background: rgba(255, 90, 95, 0.05);
    border: 1px solid rgba(255, 90, 95, 0.15);
}

.compare-card h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.compare-card.good h4 { color: var(--secondary); }
.compare-card.bad h4 { color: var(--primary); }

.compare-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.compare-card li {
    font-size: 0.95rem;
    padding-left: 1.2rem;
    position: relative;
}

.compare-card.good li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }
.compare-card.bad li::before { content: '✗'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: rgba(255, 90, 95, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
    color: var(--text-muted);
}

/* CTA Inline */
.cta-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    list-style: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card h3 i {
    color: var(--primary);
}

.sidebar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
}

.sidebar-links a:hover {
    color: var(--primary);
    background: var(--bg-colorful);
}

.sidebar-links a i {
    color: var(--primary);
    font-size: 0.8rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.highlight-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: rgba(255,255,255,0.9) !important;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Article page responsive */
@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.review-card:nth-child(1) { border-top-color: var(--primary); }
.review-card:nth-child(2) { border-top-color: var(--secondary); }
.review-card:nth-child(3) { border-top-color: var(--accent); }

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

.review-card::before {
    content: '\201C';
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--bg-colorful);
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
}

.review-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-colorful);
}

.review-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.review-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating Action Buttons */
.floating-action-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.fab:hover {
    transform: scale(1.15);
    color: white;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.fab-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.fab-call:hover {
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* Pulsing ring animation for WhatsApp button */
.fab-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Animations classes from js */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* Responsive */
/* Hamburger Toggle menu basic config */
.menu-btn { display: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 1001; }
.hamburger, .hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 3px; background-color: var(--primary); border-radius: 3px; transition: var(--transition); }
.hamburger { top: 8px; } .hamburger::before { top: -8px; } .hamburger::after { top: 8px; }
.menu-btn.active .hamburger { background: transparent; }
.menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-btn.active .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 992px) {
    .hero-container, .about-grid, .contact-card { grid-template-columns: 1fr; }
    .hero { padding-top: 150px; text-align: center; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .user-card { bottom: 0; left: 0; }
    .contact-card-sidebar { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background-color: white;
        flex-direction: column; justify-content: center;
        transition: var(--transition); z-index: 1000;
    }
    .nav-links.show { right: 0; }
    .nav-links a:not(.btn-nav) { font-size: 1.5rem; }
    .menu-btn { display: block; }
    .input-row { grid-template-columns: 1fr; gap: 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; align-items: center; gap: 1rem; }
    .contact-card-form { padding: 2rem; }
}
