/* Φόρτωση custom font */
@font-face {
    font-family: 'Dihjauti';
    src: url('../fonts/dihjauti.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
}




/* FIX ALL GAPS - Put this at the TOP of style.css */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

.hero {
    margin-top: 0 !important;
    padding-top: 70px !important;
}

.footer {
    margin: 0 !important;
    margin-bottom: 0 !important;
}

/* Reduce all section spacing globally */
section {
    padding: 80px 0 !important; /* Αντί για 100px ή 120px */
}

/* Εξαιρέσεις για specific sections */
.hero {
    padding-top: 70px !important;
    padding-bottom: 0 !important;
}

.footer {
    padding: 50px 0 20px !important;
}





/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Dihjauti', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5dcb4; /* Γήινο beige background */
}

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

/* Header Styles */
.header {
    background: #6b4c35;
    box-shadow: 0 2px 15px rgba(139, 69, 19, 0.1); /* Ξύλινο shadow */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
	transition: background-color 0.3s ease;
}

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

/* 🔧 FIX LOGO SIZE */
.logo img {
    max-width: 180px;  /* Δοκίμασε 100–150px κατά προτίμηση */
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        max-width: 110px;
    }
}
@media (max-width: 480px) {
    .logo img {
        max-width: 90px;
    }
}


.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #fdebcb;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #f4d9ad;
    border-bottom: 2px solid #f4d9ad;
}



/* ============================================
   FOOTER LOGO FIX - SMALLER & CLICKABLE
   ============================================ */

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}



.footer-logo {
    max-width: 150px;  /* Μικρότερο μέγεθος από το header (που είναι 220px) */
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive sizes */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 100px;
    }
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: #8B4513;
    color: white;
}

.btn-primary:hover {
    background: #654321;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f5dcb4; /* Πιο σκούρο γήινο χρώμα */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s;
    border: 1px solid #e8d5c4;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #8B4513;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}



 /* ============================================
           WHY CHOOSE US - PROFESSIONAL VERSION
           ============================================ */

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

        body {
            font-family: 'Dihjauti', sans-serif;
            background: #f5dcb4;
            padding: 50px 0;
        }

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

        /* ============================================
           WHY CHOOSE US - PROFESSIONAL VERSION
           ============================================ */
        .why-choose-us {
            padding: 100px 0;
            background: #f5dcb6;
            position: relative;
            overflow: hidden;
        }

        /* Wood grain texture overlay */
        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(
                    90deg,
                    rgba(139, 69, 19, 0.02) 0px,
                    transparent 1px,
                    transparent 2px,
                    rgba(139, 69, 19, 0.02) 3px
                );
            opacity: 0.3;
            pointer-events: none;
        }

        /* Decorative circles */
        .why-choose-us::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 69, 19, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .why-choose-us .section-title {
            position: relative;
            z-index: 2;
            font-size: 3rem;
            color: #333;
            margin-bottom: 1rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .why-choose-us .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.3rem;
            margin-bottom: 5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .feature {
            background: white;
            padding: 3.5rem 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(139, 69, 19, 0.12);
            border: 3px solid transparent;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }

        .feature.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature:nth-child(1) { transition-delay: 0.1s; }
        .feature:nth-child(2) { transition-delay: 0.2s; }
        .feature:nth-child(3) { transition-delay: 0.3s; }

        /* Gradient border on hover */
        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 3px;
            background: linear-gradient(135deg, #8B4513, #654321, #8B4513);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature:hover::before {
            opacity: 1;
        }

        .feature:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(139, 69, 19, 0.25);
        }

        /* Counter Number */
        .feature-counter {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1;
        }

        /* Icon Container */
        .feature-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
            position: relative;
        }

        .feature:hover .feature-icon {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5);
        }

        /* SVG Icons Styling */
        .feature-icon svg {
            width: 50px;
            height: 50px;
            fill: white;
        }

        .feature h3 {
            color: #333;
            margin-bottom: 1.2rem;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .feature p {
            color: #666;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .why-choose-us .section-title {
                font-size: 2.5rem;
            }
            
            .features {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .why-choose-us {
                padding: 60px 0;
            }
            
            .feature {
                padding: 2.5rem 2rem;
            }
            
            .feature-counter {
                font-size: 3rem;
            }
            
            .feature-icon {
                width: 80px;
                height: 80px;
            }
            
            .feature-icon svg {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-us .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }



/* ============================================
   ABOUT SECTION - PROFESSIONAL REDESIGN
   ============================================ */
.about-section {
    padding: 120px 0;
    background: #fdebcb;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ============================================
   LEFT SIDE - VISUAL
   ============================================ */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
    border: 3px solid white;
}

.about-main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    animation: float 3s ease-in-out infinite;
}

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

.badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.badge-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    line-height: 1.3;
}

/* Quick Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B4513;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

/* ============================================
   RIGHT SIDE - CONTENT
   ============================================ */
.about-content {
    position: relative;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 3rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Feature Points */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.08);
    border-left: 4px solid #8B4513;
    transition: all 0.3s ease;
}

.feature-point:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-text strong {
    color: #333;
    font-size: 1.05rem;
    font-weight: 600;
}

.feature-text span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        gap: 4rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-main-image {
        height: 400px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 1.2rem 1.5rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .about-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-main-image {
        height: 350px;
    }
    
    .feature-point {
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
}

/* ============================================
   TESTIMONIALS - GOOGLE REVIEWS STYLE
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5dcb4 0%, #fdebcb 100%);
    position: relative;
}

.testimonials .section-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonials .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.testimonials-track {
    overflow: hidden;
    position: relative;
    padding-top: 40px; /* Extra space για το Google logo */
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15);
    position: relative;
    border: 2px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.25);
    transform: translateY(-5px);
}

/* Google Logo Badge */
.google-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #5f6368;
    border: 2px solid #f0f0f0;
}

.google-logo {
    width: 18px;
    height: 18px;
}

/* Quote icon - REMOVED (αντικαταστάθηκε με Google badge) */

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 2rem 0 2rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(139, 69, 19, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-title {
    color: #8B4513;
    font-size: 0.95rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-arrow {
    background: white;
    border: 2px solid #8B4513;
    color: #8B4513;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.testimonials-arrow:hover {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.testimonials-arrow:active {
    transform: scale(0.95);
}

.testimonials-dots {
    display: flex;
    gap: 0.8rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #8B4513;
    width: 35px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: rgba(139, 69, 19, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .why-choose-us .section-title,
    .testimonials .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us,
    .testimonials {
        padding: 60px 0;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -15px;
        left: 25px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .testimonials-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us .section-title,
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .why-choose-us .section-title,
    .testimonials .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us,
    .testimonials {
        padding: 60px 0;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -15px;
        left: 25px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .testimonials-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us .section-title,
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Footer */
.footer {
    background: #512e1b; /* New dark brown background */
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4b896; /* Γήινο χρυσό */
}

.footer-section p,
.footer-section a {
    color: #e8d5c4; /* Lighter color for better contrast on dark brown */
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f8f4f0; /* Even lighter on hover */
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #6b4c35; /* Darker brown border */
    color: #d4b896; /* Matching the heading color */
    font-size: 0.9rem;
}




/* About Detail Section */
 /* About Hero */
        .about-hero {
            margin-top: 80px;
            padding: 100px 0;
            background: linear-gradient(135deg, #fdebcb 0%, #f5dcb4 100%);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-hero-content {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

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

        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(139, 69, 19, 0.25);
            border: 4px solid white;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
        }

        .hero-badge {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border: 4px solid white;
            z-index: 10;
        }

        .hero-badge-number {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .hero-badge-text {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.95;
        }

        .about-hero-text h1 {
            font-size: 3.5rem;
            color: #333;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .about-hero-text .subtitle {
            font-size: 1.5rem;
            color: #8B4513;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .about-hero-text .intro-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2.5rem;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .hero-stat {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #8B4513;
            display: block;
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: #666;
        }

/* Journey Timeline */
.journey-section {
    padding: 100px 0;
    background: #f9f3eb;
}
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
    top: 0;
}
.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Alternating layout */
.timeline-item:nth-child(odd) .timeline-year {
    order: 1;
    text-align: right;
}
.timeline-item:nth-child(odd) .timeline-content {
    order: 2;
    border-left: 4px solid #8B4513;
    border-right: none;
}
.timeline-item:nth-child(even) .timeline-year {
    order: 2;
    text-align: left;
}
.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    border-left: none;
    border-right: 4px solid #8B4513;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #8B4513;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #8B4513;
    z-index: 10;
}
.timeline-year {
    font-size: 2.5rem;
    font-weight: 900;
    color: #b88555;;
    opacity: 0.7;
}
.timeline-content {
    background: #f5dcb4;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
}
.timeline-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.timeline-content p {
    color: #666;
    line-height: 1.8;
}

        /* Philosophy Section */
        .philosophy-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5dcb4 0%, #fdebcb 100%);
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .philosophy-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(139, 69, 19, 0.12);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .philosophy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(139, 69, 19, 0.25);
            border-color: #8B4513;
        }

        .philosophy-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
        }

        .philosophy-card h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .philosophy-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Skills Section */
        .skills-section {
            padding: 100px 0;
            background: white;
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #fdebcb 0%, #f5dcb4 100%);
            position: relative;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .team-member {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(139, 69, 19, 0.25);
            border-color: #8B4513;
        }

        .team-member-image {
            height: 320px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #f5dcb4 0%, #e8d5c4 100%);
        }

        .team-member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-member:hover .team-member-image img {
            transform: scale(1.1);
        }

        .team-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-member-content {
            padding: 2rem;
            text-align: center;
        }

        .team-member-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .team-member-role {
            color: #8B4513;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-member-content p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .team-highlight {
            background: #f5dcb4;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 4rem;
            border: 2px solid #8B4513;
        }

        .team-highlight h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .team-highlight p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .skills-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 4rem;
        }

        .skills-text h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .skills-text p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .skill-bar-container {
            margin-bottom: 2rem;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .skill-bar {
            height: 12px;
            background: #e8d5c4;
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #8B4513 0%, #654321 100%);
            border-radius: 10px;
            transition: width 1.5s ease;
        }

        .skills-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }
	
        .btn-primary {
            background: #8a4a1f;
            color: white;
        }

        .btn-primary:hover {
            background: #b88555;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: #8a4a1f;
            color: white;
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background: #b88555;
            color: #8B4513;
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: #512e1b;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 1rem;
            color: #d4b896;
        }

        .footer-section p,
        .footer-section a {
            color: #e8d5c4;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #f8f4f0;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #6b4c35;
            color: #d4b896;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .about-hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .timeline-dot {
                left: 20px;
            }

            .timeline-year {
                text-align: left;
                padding-left: 50px;
            }

            .timeline-item:nth-child(even) .timeline-content,
            .timeline-item:nth-child(even) .timeline-year {
                order: initial;
            }

            .philosophy-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .skills-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-hero-text h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }

            .btn-secondary {
                margin-left: 0;
                margin-top: 1rem;
            }
        }
		
		
		
		
		

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero - MINIMAL */
.services-hero-minimal {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, #fdebcb 0%, #f5dcb4 100%);
}

.services-hero-content-minimal {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-label-minimal {
    display: inline-block;
    color: #8B4513;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.services-hero-minimal h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle-minimal {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

@media (max-width: 768px) {
    .services-hero-minimal h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-minimal {
        font-size: 1.1rem;
    }
}

/* Services Overview Grid */
.services-overview {
    padding: 100px 0;
    background: white;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.12);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 69, 19, 0.08);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(139, 69, 19, 0.25);
    border-color: #8B4513;
}

.service-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-highlights li {
    color: #8B4513;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-link {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.5rem;
    color: #654321;
}




/* ============================================
   SERVICES DETAILED SECTION - MOBILE FRIENDLY
   ============================================ */

.services-detailed {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #f5dcb4 0%, #fdebcb 50%, #f5dcb4 100%);
}

.service-detail-section {
    margin-bottom: 80px;
}

.service-detail-section:last-child {
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

.service-detail-section.reverse .service-detail-grid {
    direction: rtl;
}

.service-detail-section.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-section.reverse .service-detail-visual {
    direction: ltr;
}

.detail-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.detail-features {
    margin-bottom: 30px;
}

.detail-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f6f3;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-feature:hover {
    background: #f5dcb4;
    transform: translateX(5px);
}

.feature-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.detail-feature h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.detail-feature p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.detail-specs {
    background: #fdebcb;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #8B4513;
}

.detail-specs h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.detail-specs ul {
    list-style: none;
}

.detail-specs li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.detail-specs li:before {
    content: '✓';
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Gallery Styles */
.service-gallery {
    position: relative;
    border-radius: 15px;
}

.gallery-main-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.gallery-main-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-main-image img.active-gallery-img {
    opacity: 1;
    z-index: 1;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.gallery-arrow {
    background: transparent;
    border: none;
    color: #8B4513;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    padding: 0;
    opacity: 0.6;
}

.gallery-arrow:hover {
    color: #654321;
    transform: scale(1.2);
    opacity: 1;
}

.gallery-dots-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #8B4513;
    width: 25px;
    border-radius: 4px;
}

.gallery-dot:hover {
    background: rgba(139, 69, 19, 0.6);
    transform: scale(1.2);
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
    min-width: 140px;
}

.badge-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 3px;
    white-space: nowrap;
}

.badge-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .service-detail-grid {
        gap: 40px;
        padding: 40px;
    }
    
    .service-detail-content h2 {
        font-size: 32px;
    }
    
    .gallery-main-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .service-detail-section.reverse .service-detail-grid {
        direction: ltr;
    }
    
    .service-detail-content h2 {
        font-size: 28px;
    }
    
    .detail-intro {
        font-size: 16px;
    }
    
    .gallery-main-image {
        height: 350px;
    }
    
    .gallery-controls {
        gap: 15px;
        margin-top: 15px;
    }
    
    .gallery-arrow {
        font-size: 24px;
    }
    
    .visual-badge {
        padding: 10px 15px;
        bottom: 15px;
        right: 15px;
    }
    
    .badge-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-detailed {
        padding: 60px 0 !important;
    }
    
    .service-detail-section {
        margin-bottom: 60px;
    }
    
    .service-detail-grid {
        padding: 25px;
        gap: 30px;
    }
    
    .service-detail-content h2 {
        font-size: 24px;
    }
    
    .detail-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon-small {
        align-self: center;
    }
    
    .gallery-main-image {
        height: 280px;
    }
    
    .gallery-controls {
        gap: 10px;
    }
    
    .gallery-arrow {
        font-size: 20px;
    }
    
    .visual-badge {
        min-width: 120px;
        padding: 8px 12px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .badge-price {
        font-size: 13px;
    }
}




/* Map Section */
.map-section {
    padding: 60px 0;
    background: #fdebcb;
    text-align: center;
}

.map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.map-section p {
    color: #666;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: #ddd;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
    font-size: 1.1rem;
    border: 1px solid #d4b896;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    border: 1px solid #d4b896;
    width: 100%; /* Βεβαιώσου ότι παίρνει full width */
    max-width: 100%; /* Πρόσθεσε και αυτό */
}

.map-container iframe {
    display: block;
    width: 100%; /* Βεβαιώσου ότι το iframe είναι 100% */
    height: 400px; /* Σταθερό ύψος */
}

/* Gallery Styles */
.gallery-content {
    padding: 80px 0;
    background: #f5dcb4;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
    padding: 10px 20px;
    margin: 0 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B4513;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    cursor: pointer;
    border: 1px solid #e8d5c4;
    height: 450px; /* Fixed height for container */
    display: flex; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
    flex: 1; / Add this */
}
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.modal-caption {
    padding: 1.5rem;
    background: white;
}

.modal-caption h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-caption p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .about-detail-content,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        display: block;
        margin: 0.5rem auto;
        width: 200px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .services-grid,
    .features,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
    }
}


/* Hero Section - Full Screen Image */
.hero { 
    background: #fdebcb; 
    margin-top: 80px; 
    padding: 0; 
    height: 100vh; /* Πιάνει όλο το ύψος της οθόνης */ 
    position: relative; 
    overflow: hidden; 
} 

.hero .container { 
    padding: 0; 
    height: 100%; 
    max-width: none; /* Αφαιρούμε το max-width για full width */ 
} 

.hero-content { 
    height: 100%; 
    position: relative; 
} 

.hero-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Βεβαιώνει ότι η εικόνα καλύπτει όλο το space */ 
    display: block; 
    position: absolute; 
    inset: 0; /* top:0 left:0 right:0 bottom:0 */ 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
} 

.hero-image.show { /* visible one */ 
    opacity: 1; 
} 

.hero-text-overlay { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 90%; 
    max-width: 800px; 
    background: rgba(255, 255, 255, 0.2); 
    padding: 2.5rem; 
    border-radius: 10px; 
    text-align: center; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(2px); 
    border: 1px solid rgba(139, 69, 19, 0.15); 
} 

.hero-text-overlay h2 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    line-height: 1.2; 
    font-weight: 700; 
    color: #fff; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
} 

.hero-text-overlay p { 
    font-size: 1.1rem; 
    margin-bottom: 2rem; 
    line-height: 1.6; 
    color: white; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
    font-weight: 500; 
} 

.hero-text-overlay .btn-primary { 
    background: #8B4513; 
    color: white; 
    border: 2px solid #8B4513; 
    padding: 15px 40px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-weight: 600; 
    border-radius: 4px; 
    transition: all 0.3s ease; 
} 

.hero-text-overlay .btn-primary:hover { 
    background: #654321; 
    border-color: #654321; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
} 

/* Responsive */ 
@media (max-width: 768px) { 
    .hero { 
        height: 80vh; /* Λίγο μικρότερο ύψος για mobile */ 
    } 
    .hero-text-overlay { 
        padding: 2rem; 
        width: 95%; 
    } 
    .hero-text-overlay h2 { 
        font-size: 2rem; 
    } 
    .hero-text-overlay p { 
        font-size: 1rem; 
    } 
} 

@media (max-width: 480px) { 
    .hero { 
        height: 70vh; 
    } 
    .hero-text-overlay { 
        padding: 1.5rem; 
    } 
    .hero-text-overlay h2 { 
        font-size: 1.6rem; 
    } 
}




/* ------- mobile nav toggle ------- */
/* ---------- minimal right-side drawer ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    z-index: 1100;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: .3s;
}

/* ---------- minimal right-side "just-fit" drawer ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    z-index: 1100;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: .3s;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .hamburger { display: flex; }

    .nav {
        position: absolute;          /* sits in normal flow → height auto */
        top: 100%;                   /* tuck right under header */
        right: 0;
        background: #6b4c35;
        box-shadow: -2px 4px 10px rgba(0,0,0,.06);
        transform: translateX(100%);
        transition: transform .3s ease;
        padding: .75rem 1.25rem 1rem;
        white-space: nowrap;         /* shrink-wrap width to text */
    }
    .nav.open { transform: translateX(0); }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: .7rem;
        margin: 0;
        padding: 0;
    }
    .nav a { font-size: 1rem; }
}





/* ============================================
   SERVICES CAROUSEL - INFINITE LOOP
   ============================================ */
.services-carousel {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5dcb4 0%, #fdebcb 100%);
    position: relative;
    overflow: hidden;
}

.services-carousel .section-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 4rem;
    font-weight: 600;
    text-align: center;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.carousel-track {
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
}

.carousel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(139, 69, 19, 0.1);
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.carousel-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.carousel-content {
    padding: 1.5rem;
    text-align: center;
}

.carousel-content h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.carousel-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-arrow {
    background: white;
    border: 2px solid #8B4513;
    color: #8B4513;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #8B4513;
    width: 35px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(139, 69, 19, 0.6);
}

.carousel-view-all {
    text-align: center;
    margin-top: 3rem;
}


/* Learn More Button for Carousel */
.carousel-learn-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.carousel-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.35);
    background: linear-gradient(135deg, #654321 0%, #8B4513 100%);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 20px);
    }
    
    .services-carousel .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .services-carousel {
        padding: 60px 0;
    }
    
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(100% - 20px);
    }
    
    .carousel-image {
        height: 200px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-carousel .section-title {
        font-size: 2rem;
    }
    
    .carousel-content h3 {
        font-size: 1.1rem;
    }
    
    .carousel-content p {
        font-size: 0.95rem;
    }
}

/* 🎯 Γενικοί κανόνες για ΟΛΕΣ τις εικόνες */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px; /* προαιρετικό για όμορφο finish */
}

/* 🎯 Εικόνες σε κάρτες, carousel, gallery κλπ */
.carousel-image img,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 🎯 Ύψος μόνο για sliders, galleries, cards */
.carousel-image,
.service-image {
    height: 260px; /* μπορείς να το αλλάξεις (200–350 ανάλογα με το design) */
}


/* Μικρότερη διάσταση για το about us ΝΙΚΟΣ  ΤΕΣΤ ΤΕΣΤ ΤΕΣΤ*/
.about-content .about-image {
    height: 200px;         /* μικρότερο ύψος από τα 260px/380px που έχεις */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content .about-image img {
    width: 55%;            /* ή 70% αν τη θες ακόμη πιο μικρή */
    height: auto;          /* κρατάει τις σωστές αναλογίες */
    object-fit: contain;   /* δεν την κόβει */
}





/* Gallery Hero Section */
.gallery-hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #fdebcb 0%, #f5dcb4 100%);
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-hero p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 69, 19, 0.08);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .gallery-hero {
        padding: 80px 0;
    }
    
    .gallery-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 60px 0;
    }
    
    .gallery-hero h1 {
        font-size: 2.3rem;
    }
    
    .gallery-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
}







/* Contact Hero Full Section - Side by Side Layout */
.contact-hero-full {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #fdebcb 0%, #f5dcb4 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact-hero-full::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-full::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side - Hero Info */
.contact-hero-left {
    padding-right: 2rem;
}

.contact-hero-left h1 {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-hero-left p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h3 {
    color: #8B4513;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.hero-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-box-small {
    background: white;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    text-align: center;
    border: 2px solid rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
}

.stat-box-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.stat-box-small .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-box-small .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Right Side - Contact Form */
.contact-hero-right {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
    border: 2px solid rgba(139, 69, 19, 0.08);
}

.contact-form-card h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8d5c4;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-primaryform {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primaryform:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero-left {
        padding-right: 0;
    }
    
    .contact-hero-left h1 {
        font-size: 2.8rem;
    }
    
    .contact-hero-right {
        position: static;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-full {
        padding: 60px 0;
    }
    
    .contact-hero-left h1 {
        font-size: 2.3rem;
    }
    
    .contact-hero-left p {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .hero-stats-inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-left h1 {
        font-size: 2rem;
    }
    
    .contact-form-card h2 {
        font-size: 1.6rem;
    }
}








/* Process + CTA Combined Section */
.process-cta-combined {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #f0e6d8 100%);
    position: relative;
    overflow: hidden;
}

.process-cta-combined::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.process-cta-combined::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid Layout */
.process-cta-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side - Process Steps */
.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.2);
    border-color: #8B4513;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Right Side - CTA Card */
.cta-card-sticky {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.3);
    text-align: center;
}

.cta-icon {
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-card-sticky h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-card-sticky p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    padding: 0.5rem 0;
}

.check-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-modern-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    color: #8B4513;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.btn-modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f4f0;
}

.btn-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-modern-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-cta-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .process-cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-card-sticky {
        position: static;
    }
    
    .process-steps-vertical {
        gap: 1.5rem;
    }
    
    .process-step-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .process-cta-combined {
        padding: 80px 0;
    }
    
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .process-step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-card-sticky {
        padding: 2rem;
    }
    
    .cta-card-sticky h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .btn-modern-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}




