/* =========================================
   CSS Reset & Variables
========================================= */
:root {
    /* Color Palette */
    --primary-color: #d4a373;      /* Warm Earthy Tone */
    --primary-dark: #b58656;
    --secondary-color: #3e5c76;    /* Slate/Stone Blue */
    --dark-color: #1d2d44;         /* Very Dark Slate */
    --light-color: #fefae0;        /* Soft Beige */
    --bg-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --whatsapp-color: #25d366;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing & Utilities */
    --transition: all 0.3s ease-in-out;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

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

.text-center {
    text-align: center;
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

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

.btn-light:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
}

/* =========================================
   Navbar (Glassmorphism)
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
}

.mobile-menu-header {
    display: none;
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link,
.navbar.scrolled .logo i {
    color: var(--dark-color);
}

.navbar.scrolled .btn-call-nav {
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo-text {
    color: var(--white);
    transition: var(--transition);
}

.highlight {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-call-nav {
    background-color: var(--white);
    color: var(--dark-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--dark-color);
}

/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../images/hero_bg.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 45, 68, 0.9) 0%, rgba(29, 45, 68, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features i {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* =========================================
   About Section
========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-img {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
}

.shadow-lg {
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 8px solid var(--bg-color);
    box-shadow: var(--box-shadow);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-family: var(--font-primary);
    font-weight: 400;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin: 0;
}

/* =========================================
   Services Section
========================================= */
.services .section-header {
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

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

/* =========================================
   CTA Section (Elegant Flex Banner)
========================================= */
.cta-section {
    padding: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a97746 100%);
    border-radius: var(--border-radius);
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.3);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background overlay for elegance */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-text {
    z-index: 2;
    max-width: 600px;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.cta-action {
    z-index: 2;
}

.cta-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-decoration: none;
}

.cta-btn:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
}

/* =========================================
   Contact Section
========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-list li:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-details strong {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-details span, .info-details a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

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

.map-wrapper {
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* =========================================
   Pagination
========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.page-link:hover, .page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(212, 163, 115, 0.4);
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col .logo {
    margin-bottom: 20px;
}

.footer-col p {
    color: #a0aec0;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

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

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a, .footer-col ul li {
    color: #a0aec0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #152233;
    padding: 20px 0;
    text-align: center;
    color: #a0aec0;
}

/* =========================================
   WhatsApp Floating Button
========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp-color);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

/* =========================================
   Neden Biz (Why Us) Section
========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(212, 163, 115, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 163, 115, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-us-card:hover .why-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.why-us-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* =========================================
   Process (Nasıl Çalışıyoruz) Section
========================================= */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    padding-top: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(212, 163, 115, 0.2);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    box-shadow: 0 0 0 5px var(--bg-light);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
}

.pt-0 {
    padding-top: 0 !important;
}

/* =========================================
   Success Modal
========================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #10b981;
}
.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.modal-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   FAQ Section
========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question.active + .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   Testimonials Section
========================================= */
.testimonials-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
    height: 550px;
    margin-top: 40px;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.testimonials-list-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-right: 10px;
    flex: 1;
    min-height: 0;
}

/* Custom scrollbar for testimonials */
.testimonials-slider::-webkit-scrollbar {
    width: 6px;
}
.testimonials-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.testimonials-slider::-webkit-scrollbar-thumb {
    background: rgba(212, 163, 115, 0.4);
    border-radius: 10px;
}
.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 163, 115, 0.8);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    flex-shrink: 0;
}

.stars {
    color: #eab308;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.comment {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.client-meta h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-primary);
}

.client-meta p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.testimonials-right {
    height: 100%;
    position: relative;
    padding: 15px 0 0 15px;
}

.testimonials-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
    z-index: 0;
}

.testimonials-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: var(--box-shadow);
    border: 3px solid var(--white);
    z-index: 1;
}

.testimonials-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.testimonials-img-badge i {
    color: #10b981;
    font-size: 1.2rem;
}

.testimonials-img-badge span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }
    .testimonials-slider {
        max-height: 450px;
    }
    .testimonials-right {
        height: 350px;
    }
}

/* =========================================
   Contact Forms & Tabs
========================================= */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: var(--bg-color);
    padding: 5px;
    border-radius: 10px;
}

.form-tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-tab-btn.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-panel {
    display: none;
    animation: fadeInForm 0.4s ease;
}

.form-panel.active {
    display: block;
}

@keyframes fadeInForm {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.form-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}

.w-100 {
    width: 100%;
}

.rating-input {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
}

.rating-input i.active {
    color: #eab308;
}

.contact-map-full {
    margin-top: 60px;
    width: 100%;
}

/* =========================================
   Animations
========================================= */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations using Intersection Observer */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible, 
.fade-in-left.visible, 
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .about-container, .contact-container, .testimonials-layout {
        grid-template-columns: 1fr;
    }
    .testimonials-layout {
        height: auto;
    }
    .testimonials-left {
        height: 500px;
    }
    .experience-badge {
        right: 10px;
        bottom: -20px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--dark-color);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--dark-color);
    }
    
    .hamburger {
        z-index: 1001;
        position: relative;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        gap: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 75%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        padding-top: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
    }
    
    .mobile-menu-header {
        display: block;
        padding: 0 30px 30px 30px;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        margin-bottom: 10px;
    }
    
    .mobile-menu-header .logo {
        font-size: 1.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 30px;
    }
    
    .nav-link {
        color: var(--dark-color);
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-call-nav {
        display: none;
    }
    
    .navbar .logo-text, .navbar .logo i, .hamburger .bar {
        color: var(--dark-color) !important;
    }
    
    .hamburger .bar {
        background-color: var(--dark-color) !important;
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        padding: 15px 0;
        box-shadow: var(--box-shadow);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
