/**
 * Siena Turizm - Main Stylesheet
 * Professional, Modern & Elegant Design
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    z-index: var(--z-navbar);
}

.navbar.scrolled {
    background: var(--navbar-bg-scrolled);
    box-shadow: var(--navbar-shadow);
    padding: 0.75rem 0;
}

.navbar-brand img {
    height: 45px;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

/* Dark mode logo visibility */
[data-theme="dark"] .navbar-brand img {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark mode SVG icons (iata, tursab, thy) */
.institution-img {
    transition: filter var(--transition-fast);
}

[data-theme="dark"] .institution-img {
    filter: brightness(0) invert(1);
}

/* Partner logos */
.partner-logos {
    max-width: 100%;
    opacity: 0.85;
    transition: filter var(--transition-fast);
}

[data-theme="dark"] .partner-logos {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.navbar .nav-link {
    color: var(--navbar-text);
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--navbar-text-hover);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: calc(100% - 2.5rem);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: var(--navbar-text);
    display: block;
    position: relative;
    transition: background-color var(--transition-fast);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--navbar-text);
    transition: transform var(--transition-fast);
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { bottom: -7px; }

/* Theme Toggle Button */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.25rem;
}

.theme-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: rotate(15deg);
}

/* Language Switcher */
.lang-switcher {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.lang-switcher:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--hero-text);
    max-width: 800px;
    padding: 0 1rem;
}

/* Hero Controls */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

.hero-control:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.hero-indicator:hover,
.hero-indicator.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-control {
        width: 40px;
        height: 40px;
    }

    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }

    .hero-indicators {
        bottom: 20px;
    }
}

/* Legacy hero-section support */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    line-height: 1.8;
}

.hero-subtitle a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-fast);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow-hover);
    background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-light:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
    overflow: hidden;
}

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

.card-body {
    padding: 2rem;
}

/* Service Card */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.service-card-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--bg-secondary);
    transition: all var(--transition-normal);
}

.service-card:hover .service-card-icon {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Institution Card */
.institution-card {
    text-align: center;
    padding: 2rem;
}

.institution-card img {
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-fast);
}

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

.institution-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

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

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

.section-bg {
    background: var(--bg-secondary);
}

/* ===== ACCORDION ===== */
.accordion {
    --bs-accordion-bg: var(--bg-card);
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-btn-color: var(--text-primary);
    --bs-accordion-active-bg: var(--color-primary-light);
    --bs-accordion-active-color: var(--color-primary);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--card-border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--bg-card);
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DF8014'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 2;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--input-focus-border);
    box-shadow: var(--input-focus-shadow);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-desc {
    color: var(--footer-text);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badge svg {
    opacity: 0.8;
}

.footer h5 {
    color: var(--footer-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer a {
    color: var(--footer-text);
    transition: all var(--transition-fast);
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.footer-links a:hover svg {
    opacity: 1;
    color: var(--color-primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--color-primary);
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.footer-contact-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-text a:hover {
    padding-left: 0;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours .day {
    opacity: 0.8;
}

.footer-hours .time {
    color: var(--color-primary);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
    padding-left: 0;
}

@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer [class*="col-"] {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        gap: 1.5rem;
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-whatsapp);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6); }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-secondary);
}

.content-section strong {
    color: var(--text-primary);
}

/* ===== UTILITIES ===== */
.text-primary { color: var(--color-primary) !important; }
.bg-primary-light { background: var(--color-primary-light) !important; }
.border-primary { border-color: var(--color-primary) !important; }

.rounded-lg { border-radius: var(--card-border-radius) !important; }

.shadow-sm { box-shadow: var(--card-shadow) !important; }
.shadow-lg { box-shadow: var(--card-shadow-hover) !important; }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* ===== LOADING ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-primary);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--card-border-radius);
        box-shadow: var(--card-shadow);
    }

    .navbar .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .nav-actions {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
        background-attachment: scroll;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 1.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ===== WHY US SECTION ===== */
.why-us-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-border-radius);
    height: 100%;
    transition: all var(--transition-normal);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--color-primary);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

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

.why-us-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all var(--transition-normal);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.google-rating img {
    height: 24px;
}

/* ===== HOW IT WORKS SECTION ===== */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--btn-shadow);
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Step connector line */
@media (min-width: 768px) {
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -15%;
        width: 30%;
        height: 2px;
        background: linear-gradient(90deg, var(--color-primary), transparent);
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-phone {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cta-phone:hover {
    color: var(--color-primary-hover);
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .whatsapp-float,
    .theme-toggle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
