/* ==========================================
   MENTORA SMMM - STYLE.CSS
   ========================================== */

/* Reset */
/* Import Google Fonts for handwriting style */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Dancing+Script:wght@400;700&display=swap');

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px;
    color: #f4e7d7;
}

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

.social-links a {
    color: white;
    transition: color 0.3s;
    text-decoration: none;
    font-size: 16px;
}

.social-links a:hover {
    color: #f4e7d7;
}

/* ==========================================
   HEADER
   ========================================== */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

/* Body padding to prevent content from hiding under fixed header */
body {
    padding-top: 142px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Slogan */
.header-slogan {
    font-family: 'Dancing Script', 'Caveat', cursive;
    font-size: 26px;
    color: #6e806b;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin: 0 20px;
    white-space: nowrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #6e806b;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 65px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #6e806b;
    cursor: pointer;
    padding: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6e806b;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6e806b;
    transition: width 0.3s;
}

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

/* ==========================================
   HERO SLIDER SECTION
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenburns 20s ease-in-out infinite;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.85) 0%, rgba(138, 155, 135, 0.85) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.slide-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    animation: slideInUp 1s ease-out;
}

.slide-subtitle {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #f4e7d7;
    animation: slideInUp 1s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.slide-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

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

.cta-button {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    font-size: 16px;
}

.cta-button.primary {
    background: #f4e7d7;
    color: #6e806b;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 231, 215, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #6e806b;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 60px 20px 60px;
    background: white;
    position: relative;
    z-index: 10;
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2a5298;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 30px;
    color: #f4e7d7;
}

.feature-box h3 {
    font-size: 20px;
    color: #6e806b;
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* ==========================================
   ABOUT HOME SECTION
   ========================================== */
.about-home {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-home-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-home-text {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f4e7d7;
    color: #6e806b;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-home-text h2 {
    font-size: 36px;
    color: #6e806b;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.about-home-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    color: #666;
    font-size: 16px;
}

.about-list i {
    color: #6e806b;
    margin-right: 10px;
    font-size: 18px;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background: #6e806b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-learn-more:hover {
    background: #8a9b87;
    transform: translateX(5px);
}

.btn-learn-more i {
    margin-left: 8px;
}

.about-home-image {
    flex: 1;
}

.image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #6e806b;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4e7d7 0%, #e8d9c5 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 40px;
    color: #6e806b;
}

.service-card h3 {
    font-size: 22px;
    color: #6e806b;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    flex: 1;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #6e806b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    color: #8a9b87;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 5px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    color: white;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 231, 215, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 28px;
    color: #f4e7d7;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #f4e7d7;
    font-weight: 700;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.95;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-us {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: bold;
    color: #2a5298;
    opacity: 0.1;
}

.why-card h3 {
    font-size: 22px;
    color: #6e806b;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: white;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: #f4e7d7;
    color: #6e806b;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    font-size: 16px;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.newsletter-form button i {
    margin-right: 8px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: #f4e7d7;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    max-width: 1200px;
    margin: 40px auto 0;
}

.footer-bottom p {
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Detail Page */
.services-detail-page {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-detail-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 35px;
    color: #f4e7d7;
}

.service-detail-header h2 {
    font-size: 28px;
    color: #6e806b;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-subtitle {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.service-detail-content p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

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

.feature-col h4 {
    color: #6e806b;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-col h4 i {
    color: #8a9b87;
    margin-right: 10px;
}

.feature-col ul {
    list-style: none;
    padding: 0;
}

.feature-col ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.feature-col ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6e806b;
    font-weight: bold;
}

/* Contact Page */
.contact-page {
    padding: 80px 20px;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label i {
    color: #2a5298;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6e806b;
    box-shadow: 0 0 0 3px rgba(110, 128, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #6e806b;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 128, 107, 0.3);
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 22px;
    color: #f4e7d7;
}

.contact-info-text h4 {
    font-size: 16px;
    color: #6e806b;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.contact-info-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: #6e806b;
}

.social-media-section {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.social-media-section h4 {
    font-size: 18px;
    color: #6e806b;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

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

.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.linkedin { background: #0077b5; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.map-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.map-section h2 {
    font-size: 32px;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* References Page */
.references-intro {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.intro-content h2 {
    font-size: 32px;
    color: #6e806b;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    padding: 30px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 10px;
    color: white;
}

.stat-box h3 {
    font-size: 42px;
    color: #f4e7d7;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.95;
}

.references-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reference-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.reference-logo {
    padding: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.reference-logo svg {
    width: 100%;
    height: auto;
}

.reference-info {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.reference-info h4 {
    font-size: 18px;
    color: #6e806b;
    margin-bottom: 5px;
    font-weight: 600;
}

.reference-info p {
    font-size: 14px;
    color: #666;
}

.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 35px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #f4e7d7;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #6e806b;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* Mirror Quote Section */
.mirror-quote-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.97) 0%, rgba(138, 155, 135, 0.97) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%236e806b" width="1200" height="600"/><circle cx="200" cy="150" r="100" fill="%23f4e7d7" opacity="0.1"/><circle cx="1000" cy="450" r="150" fill="%23f4e7d7" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.mirror-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(110, 128, 107, 0.3) 100%);
}

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

.quote-icon {
    margin-bottom: 30px;
    animation: fadeInDown 1s;
}

.quote-icon i {
    font-size: 60px;
    color: #f4e7d7;
    opacity: 0.8;
}

.quote-title {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInUp 1s;
}

.quote-subtitle {
    font-size: 24px;
    color: #f4e7d7;
    margin-bottom: 25px;
    font-weight: 400;
    animation: fadeInUp 1.2s;
}

.quote-description {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s;
}

.quote-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: #f4e7d7;
    color: #6e806b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(244, 231, 215, 0.3);
    animation: fadeInUp 1.6s;
}

.quote-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(244, 231, 215, 0.5);
    gap: 20px;
}

.quote-cta-button i {
    transition: transform 0.3s;
}

.quote-cta-button:hover i {
    transform: translateX(5px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    /* Top-bar mobilide gizle */
    .top-bar {
        display: none;
    }
    
    /* Header mobilide en üstte */
    header {
        top: 0;
    }
    
    /* Body padding mobilide sadece header kadar */
    body {
        padding-top: 90px;
    }
    
    /* Header slogan mobilide gizle */
    .header-slogan {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
        animation: slideInRight 0.3s ease-out;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        color: #6e806b;
        cursor: pointer;
    }
    
    /* Slider Mobile Styles */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 24px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 30px;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-home-content {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .quote-title {
        font-size: 32px;
    }

    .quote-subtitle {
        font-size: 18px;
    }

    .quote-description {
        font-size: 16px;
    }

    .quote-cta-button {
        padding: 15px 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        height: 50px;
        max-width: 180px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

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

/* ==========================================
   ABOUT PAGE (HAKKIMIZDA)
   ========================================== */
.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px !important;
    font-weight: 500;
    color: #333 !important;
    line-height: 1.8;
}

.service-approach-section {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 80px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-wrapper h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.highlight-text {
    background: white;
    padding: 30px;
    border-left: 4px solid #6e806b;
    border-radius: 8px;
    font-size: 19px !important;
    font-style: italic;
    color: #333 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight-text i {
    color: #6e806b;
    margin: 0 10px;
}

.principles-section {
    margin-bottom: 80px;
}

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

.principle-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #6e806b;
}

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

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon i {
    font-size: 36px;
    color: white;
}

.principle-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.founder-section {
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.05) 0%, rgba(138, 155, 135, 0.05) 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.founder-name-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.founder-name-card h3 {
    font-size: 24px;
    color: #6e806b;
    margin-bottom: 5px;
    font-weight: 700;
}

.founder-name-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.founder-message {
    padding: 20px;
}

.message-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.message-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.opening-statement {
    font-size: 18px !important;
    color: #333 !important;
}

.opening-statement strong {
    color: #6e806b;
    font-size: 19px;
}

.founder-quote {
    background: #f8f9fa;
    border-left: 4px solid #6e806b;
    padding: 25px 30px;
    margin: 30px 0;
    font-size: 18px !important;
    font-style: italic;
    color: #333 !important;
    border-radius: 8px;
}

.founder-quote i {
    color: #6e806b;
    opacity: 0.5;
    font-size: 14px;
}

.founder-principles {
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.1) 0%, rgba(138, 155, 135, 0.1) 100%);
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.founder-principles p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.founder-principles p:last-child {
    margin-bottom: 0;
}

.founder-principles i {
    color: #6e806b;
    font-size: 20px;
    flex-shrink: 0;
}

.signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: right;
}

.signature-name {
    font-size: 22px !important;
    font-weight: 700;
    color: #6e806b !important;
    margin-bottom: 5px !important;
    font-style: italic;
}

.signature-title {
    font-size: 15px !important;
    color: #999 !important;
    margin: 0 !important;
}

.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 20px;
    color: white;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Responsive */
@media (max-width: 968px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image {
        position: relative;
        top: 0;
    }
    
    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title-wrapper h2 {
        font-size: 28px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 0;
    }
    
    .service-approach-section,
    .founder-section {
        padding: 40px 20px;
    }
    
    .message-content {
        padding: 25px;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   SERVICES CTA SECTION
   ========================================== */
.services-cta {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-cta {
        padding: 50px 20px;
    }
    
    .services-cta h2 {
        font-size: 28px;
    }
    
    .services-cta p {
        font-size: 16px;
    }
}
/* ==========================================
   NEWS PAGE (HABERLER)
   ========================================== */
.news-page {
    padding: 80px 20px;
    background: #f8f9fa;
}

.loading-indicator {
    text-align: center;
    padding: 60px 20px;
}

.loading-indicator i {
    font-size: 48px;
    color: #6e806b;
    margin-bottom: 20px;
}

.loading-indicator p {
    font-size: 18px;
    color: #666;
}

.error-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.error-message i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.error-message p {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.error-detail {
    font-size: 16px !important;
    color: #999 !important;
}

.error-detail a {
    color: #6e806b;
    text-decoration: underline;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-card-header {
    padding: 20px 20px 15px;
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.05) 0%, rgba(138, 155, 135, 0.05) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #6e806b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.news-card-body {
    padding: 20px;
    flex-grow: 1;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.news-card-footer {
    padding: 0 20px 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6e806b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.news-link:hover {
    gap: 12px;
    color: #8a9b87;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    padding: 15px 40px;
    background: #6e806b;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: #8a9b87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 128, 107, 0.3);
}

.news-source-info {
    padding: 40px 20px;
    background: white;
}

.source-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.05) 0%, rgba(138, 155, 135, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid #6e806b;
}

.source-card i {
    font-size: 32px;
    color: #6e806b;
    margin-bottom: 15px;
}

.source-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.source-card a {
    color: #6e806b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #6e806b;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-page {
        padding: 40px 20px;
    }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid #6e806b;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: #8a9b87;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 28px;
    color: white;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #ffc107;
}

.testimonial-body {
    margin-bottom: 20px;
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-footer {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(110, 128, 107, 0.1) 0%, rgba(138, 155, 135, 0.1) 100%);
    color: #6e806b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.references-cta {
    background: linear-gradient(135deg, #6e806b 0%, #8a9b87 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.references-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.references-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .references-cta {
        padding: 50px 20px;
    }
    
    .references-cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Info Link Style */
.contact-info-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    transition: all 0.3s;
}

.contact-info-link:hover {
    transform: translateX(5px);
}

.contact-info-link .contact-info-icon {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.contact-info-link:hover .contact-info-icon {
    transform: scale(1.1);
}

/* First Slide Custom Styles */
.slider-item.active .slide-title {
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .slider-item.active .slide-title {
        font-size: 28px !important;
        line-height: 1.4 !important;
    }
    
    .slider-item.active .slide-subtitle {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .slider-item.active .slide-title {
        font-size: 22px !important;
    }
    
    .slider-item.active .slide-subtitle {
        font-size: 20px !important;
    }
}
