/* ==========================================
   MEHMET PEKŞEN DESIGN - CHOCOLATE VISION 2026
   Theme: Chocolate, Gold, Luxury & Premium
   ========================================== */

:root {
    /* Color Palette - Chocolate & Gold */
    --chocolate-dark: #2A1405;
    --chocolate-med: #3E2723;
    --chocolate-light: #5D4037;
    --chocolate-lighter: #795548;
    
    --gold-dark: #B8860B;
    --gold-main: #D4AF37;
    --gold-light: #F4C430;
    --gold-pale: #FFF8E1;
    --gold-hover: #E5C158;

    --bg-body: #FAF7F2;
    --bg-card: #FFFFFF;
    --bg-light: #F5F5F5;
    
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --text-light: #999999;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    /* Layout */
    --container-width: 1240px;
    --header-height: 85px;
    --sidebar-width: 320px;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(62, 39, 35, 0.06);
    --shadow-medium: 0 15px 40px rgba(62, 39, 35, 0.1);
    --shadow-hover: 0 20px 50px rgba(212, 175, 55, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.7;
    padding-top: var(--header-height);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--chocolate-dark);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-main); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-main), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s ease;
    width: 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--chocolate-med), var(--chocolate-dark));
    color: #fff;
    box-shadow: 0 6px 20px rgba(62, 39, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.4);
}

.btn-chocolate {
    background: linear-gradient(135deg, var(--chocolate-light), var(--chocolate-med));
    color: #fff;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.3);
}

.btn-chocolate:hover {
    background: linear-gradient(135deg, var(--chocolate-med), var(--chocolate-dark));
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--chocolate-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: var(--gold-main);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(62, 39, 35, 0.3); }
    50% { box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5); }
}

/* ==========================================
   HEADER
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--gold-main);
    display: flex;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chocolate-dark);
    line-height: 1;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--gold-dark);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    font-size: 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--gold-dark);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-main);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: var(--shadow-medium);
    padding: 12px 0;
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-main);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--gold-pale);
    color: var(--chocolate-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--chocolate-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--chocolate-dark);
    color: #fff;
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-menu {
    color: #fff;
    font-size: 1.5rem;
}

.mobile-links {
    padding: 20px;
}

.mobile-links a {
    display: block;
    padding: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.mobile-links a:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 20px;
}

.mobile-cta {
    background: var(--gold-main) !important;
    color: var(--chocolate-dark) !important;
    border-radius: var(--radius-sm);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--chocolate-dark);
    color: #fff;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--chocolate-light), var(--chocolate-dark));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42,20,5,0.8), rgba(62,39,35,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-desc {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.badge-item i {
    color: var(--gold-light);
}

.badge-item strong {
    color: var(--gold-main);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb-area {
    background: var(--bg-card);
    border-bottom: 1px solid #E8E8E8;
    padding: 16px 0;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #ccc;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

/* ==========================================
   MAIN LAYOUT
   ========================================== */
.main-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: 40px;
    padding: 50px 0 80px;
}

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar .widget {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.04);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-pale);
    color: var(--chocolate-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Location Selects */
.location-selects select {
    width: 100%;
    padding: 13px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.location-selects select:hover,
.location-selects select:focus {
    border-color: var(--gold-main);
    outline: none;
}

.location-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
}

/* Service List */
.service-list li {
    margin-bottom: 8px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.service-list a .arrow {
    margin-left: auto;
    opacity: 0;
    transition: var(--transition);
}

.service-list a:hover,
.service-list a.active {
    background: var(--gold-pale);
    color: var(--chocolate-dark);
    padding-left: 20px;
}

.service-list a:hover .arrow,
.service-list a.active .arrow {
    opacity: 1;
}

/* Contact Card */
.contact-card {
    text-align: center;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--chocolate-dark);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--chocolate-dark);
    margin-bottom: 5px;
}

.contact-card .title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 15px 0;
}

.phone-link:hover {
    color: var(--chocolate-dark);
}

.note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

/* Info Widget */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.info-list i {
    color: var(--gold-main);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==========================================
   CONTENT AREA
   ========================================== */
.content-area {
    min-height: 500px;
}

/* Service Article */
.service-article {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    color: var(--chocolate-dark);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--chocolate-dark);
    margin-bottom: 20px;
}

.rating-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i.filled {
    color: var(--gold-main);
}

.rating-text {
    color: var(--text-muted);
    font-weight: 600;
}

/* Featured Image */
.featured-image-area {
    margin-bottom: 40px;
}

.img-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: var(--radius-md);
    border: 2px dashed #ddd;
}

.img-placeholder i {
    color: var(--gold-main);
    margin-bottom: 15px;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.article-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--chocolate-med);
    margin-bottom: 30px;
    padding: 25px;
    background: var(--gold-pale);
    border-left: 4px solid var(--gold-main);
    border-radius: var(--radius-sm);
}

.article-content h2 {
    font-family: var(--font-heading);
    color: var(--chocolate-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-left: 20px;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: var(--gold-main);
    border-radius: 3px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content strong {
    color: var(--chocolate-dark);
}

.article-content ul.feature-list {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: var(--radius-sm);
}

.feature-list i {
    color: var(--gold-main);
    flex-shrink: 0;
    margin-top: 3px;
}

.cta-box {
    background: linear-gradient(135deg, var(--chocolate-med), var(--chocolate-dark));
    color: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 40px;
    text-align: center;
}

.cta-box strong {
    color: var(--gold-light);
}

/* CTA Banner Large */
.cta-banner-large {
    background: linear-gradient(135deg, var(--chocolate-med), var(--chocolate-dark));
    padding: 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-content p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* ==========================================
   LANDING PAGE
   ========================================== */
.landing-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.landing-intro {
    text-align: center;
    margin-bottom: 50px;
}

.landing-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-pale);
}

.card-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gold-pale);
    color: var(--chocolate-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--chocolate-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 25px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.price-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-link-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--chocolate-med);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-link-arrow:hover {
    gap: 10px;
    color: var(--gold-dark);
}

/* Why Us Section */
.why-us-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-pale);
    color: var(--chocolate-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    margin: 60px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-header-center p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item .img-placeholder {
    height: 100%;
    min-height: auto;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chocolate-dark);
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.overall-rating {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    display: inline-block;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-main);
    margin-bottom: 10px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-main);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--chocolate-dark);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--chocolate-dark);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.5rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-main);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold-main);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-list i {
    color: var(--gold-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.dev-credit {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ==========================================
   STICKY ELEMENTS
   ========================================== */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.sticky-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.sticky-whatsapp .tooltip {
    position: absolute;
    right: 75px;
    background: var(--chocolate-dark);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sticky-whatsapp:hover .tooltip {
    opacity: 1;
    right: 80px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-main);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: 998;
    transition: var(--transition);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--chocolate-dark);
    transform: translateY(-5px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .content-area {
        order: 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-actions .btn span {
        display: none;
    }
    
    .service-article,
    .landing-content {
        padding: 30px 20px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .cta-banner-large {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}