/* Base Styles & Variables */
:root {
    --primary-color: #8B7355;  /* Kahve tonu */
    --secondary-color: #D4AF37;  /* Gold */
    --light-bg: #F5F5F0;  /* Krem tonu */
    --light-beige: #F8F4E9;  /* Açık bej */
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    background: #fff;
    color: var(--dark-text);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    z-index: 1200;
    transition: transform .3s ease, opacity .3s ease;
}

.cookie-banner.hide { opacity: 0; transform: translateY(10px); }
.cookie-banner .cookie-text { font-size: .95rem; }
.cookie-banner .cookie-text a { color: var(--primary-color); font-weight: 600; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 400;
    color: var(--light-text);
    letter-spacing: 0.5px;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.logo:hover .logo-main,
.logo:focus .logo-main {
    color: var(--secondary-color);
}

.logo:hover .logo-tagline,
.logo:focus .logo-tagline {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Active nav link state for inner pages */
.nav-links a.current {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/italyanboya.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Inner Page Hero */
.page-hero {
    background: linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)),
                url('https://images.unsplash.com/photo-1616594039964-ae9021a197aa?auto=format&fit=crop&w=1600&q=70') no-repeat center/cover;
    padding: 140px 0 70px;
    margin-top: 80px;
    text-align: left;
}

/* Contact page hero background */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
                url('../images/iletisim-hero.jpg') no-repeat center/cover;
}

.contact-hero h1,
.contact-hero p,
.contact-hero .breadcrumbs,
.contact-hero .breadcrumbs a {
    color: #fff;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.page-hero p {
    color: var(--light-text);
    margin-top: 10px;
}

.breadcrumbs {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--light-text);
}

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

.page-content {
    padding: 60px 0 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

/* Decorative Paint & Plaster (Homepage) */
.decorative {
    padding: 90px 0;
    background: var(--light-bg);
}

.decorative-head {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.decorative-intro {
    color: var(--light-text);
    font-size: 1.05rem;
    margin-top: 10px;
}

.decorative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.decorative-item {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.decorative-media { position: relative; }
.decorative-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chip {
    position: absolute; left: 16px; bottom: 16px; background: rgba(0,0,0,0.6); color: #fff; padding: 6px 12px; border-radius: 999px; font-size: 0.85rem; letter-spacing: .3px;
}

.decorative-info { padding: 22px 22px; }
.decorative-info h3 { margin-bottom: 10px; color: var(--primary-color); }
.decorative-info p { color: var(--light-text); margin-bottom: 12px; }

.decorative-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 35px 0 10px;
}

.decorative-gallery .gallery-item { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.decorative-gallery img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; }
.decorative-gallery .gallery-item:hover img { transform: scale(1.05); }

.decorative-cta { display: flex; gap: 12px; justify-content: center; margin-top: 10px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-beige);
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary-color);
}

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

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Service Details (Inner Page) */
.service-sections {
    display: grid;
    gap: 60px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-media img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-info h2 {
    margin-bottom: 15px;
}

.feature-bullets {
    margin-top: 15px;
}

.feature-bullets li { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 10px;
}

.feature-bullets i { 
    color: var(--secondary-color); 
    margin-right: 8px; 
    margin-top: 4px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-btn {
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    padding: 25px 20px 20px;
    color: white;
    z-index: 2;
    transition: var(--transition);
    opacity: 1;
    transform: none;
    backdrop-filter: blur(2px);
}

.portfolio-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.portfolio-overlay p {
    font-size: 1.1rem;
    color: #f8f8f8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    margin: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

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

.features-list {
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.features-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0 0;
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Contact highlight cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.contact-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-card i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-card h4 { margin-bottom: 6px; color: var(--primary-color); }
.contact-card a { color: var(--dark-text); font-weight: 600; }
.contact-card a:hover { color: var(--primary-color); }

/* Redesigned contact layout specifics */
.contact-redesign .contact-form { padding: 40px; }
.contact-redesign .contact-info { padding: 10px 0 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: 0.9rem; color: var(--light-text); margin-bottom: 6px; }
.contact-form select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Montserrat', sans-serif; transition: var(--transition); }
.contact-form select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(139,115,85,.1); }

.form-consent { margin: 10px 0 6px; }
.checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--light-text); }

.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.form-note { margin-top: 10px; font-size: 0.9rem; color: var(--light-text); }

/* Info grid & quick actions */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 15px 0 20px; }
.info-grid .info-item { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: flex-start; }
.info-grid i { color: var(--secondary-color); margin-top: 4px; }
.info-grid strong { color: var(--primary-color); }

.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.qa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 30px; border: 1px solid var(--primary-color); color: var(--primary-color); font-weight: 600; }
.qa-btn:hover { background: var(--primary-color); color: #fff; }

.working-hours h4 { margin-top: 8px; margin-bottom: 8px; color: var(--primary-color); }
.working-hours ul { list-style: none; color: var(--light-text); }
.working-hours li { margin-bottom: 6px; }

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    display: flex;
    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-beige);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
}

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

.map {
    width: 100%;
    height: 400px;
    margin-top: 50px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1100;
}

.cta-btn {
    width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    color: #fff; font-size: 22px;
}

.btn-phone { background: var(--primary-color); }
.btn-whatsapp { background: #25D366; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }

/* Process */
.process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.process .step {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.step-icon {
    width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 12px;
    background: rgba(212,175,55,0.12);
    color: var(--secondary-color);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}

/* Materials */
.materials .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.materials .brand-card {
    background: var(--light-beige);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    font-weight: 600;
}

.materials-note {
    margin-top: 15px;
    color: var(--light-text);
}

/* FAQ */
.faq .faq-list { margin-top: 20px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--light-text); padding-right: 10px; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 15px; }

/* CTA */
.cta { padding: 60px 0; }
.cta .cta-box {
    background: linear-gradient(135deg, var(--light-beige), #fff);
    border: 1px solid #eee;
    padding: 30px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Timeline */
.timeline .timeline-list { margin-top: 20px; }
.timeline-item { 
    display: grid; 
    grid-template-columns: 100px 1fr; 
    gap: 20px; 
    padding: 15px 0; 
    border-bottom: 1px dashed #e5e5e5; 
    transition: all 0.3s ease;
}
.timeline-item:hover {
    background-color: rgba(0,0,0,0.02);
}
.timeline-item .year { 
    font-weight: 700; 
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}
.timeline-item .year::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Future timeline items */
.timeline-item.future {
    opacity: 0.9;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
    margin-left: -10px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, rgba(255,255,255,0) 20%);
}

.timeline-item.future .year {
    color: var(--secondary-color);
    font-weight: 700;
}

.timeline-item.future .year::before {
    background-color: var(--secondary-color);
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Team */
.team .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; margin-top: 25px; }
.team-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.team-card img { width: 100%; height: 180px; object-fit: cover; }
.team-card h3 { padding: 12px 16px 0; }
.team-card p { padding: 6px 16px 18px; color: var(--light-text); }

/* Why Us */
.why-us .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.why-card { background: #fff; border-radius: 12px; padding: 22px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.why-card i { color: var(--secondary-color); font-size: 24px; margin-bottom: 8px; }
.why-card h4 { margin-bottom: 6px; }

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--white);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom .legal-links { margin-bottom: 8px; }
.footer-bottom .legal-links a { color: #fff; opacity: .85; }
.footer-bottom .legal-links a:hover { color: var(--secondary-color); opacity: 1; }
.footer-bottom .legal-links span { margin: 0 6px; opacity: .5; }

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .decorative-grid { grid-template-columns: 1fr; }
    .decorative-item { grid-template-columns: 1fr; }
    .decorative-gallery { grid-template-columns: 1fr 1fr; }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info {
        padding: 30px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .info-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px 0;
    }

    .decorative-gallery { grid-template-columns: 1fr; }
    .decorative-gallery img { height: 200px; }
}

/* Responsive - inner service detail */
@media (max-width: 992px) {
    .service-detail { grid-template-columns: 1fr; }
}
