/**
 * =====================================================
 * Fincanlar Sigorta Web Site Yazılımı
 * =====================================================
 * @package     Fincanlar Sigorta CMS
 * @version     1.0.0
 * @author      Alfa Dizayn Web Tasarım
 * @copyright   2025 Fincanlar Sigorta
 * @link        https://fincanlar.net
 *
 * Tasarım ve Kodlama: Alfa Dizayn Web Tasarım
 * =====================================================
 */

/* Fincanlar Sigorta - Ultra Modern 2025 Design */

:root {
    /* Modern Color Palette - 2025 Trends */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #14b8a6;
    --accent: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    --gradient-btn: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);

    /* Shadows - Elevated */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
    --shadow-colored: 0 16px 48px rgba(102, 126, 234, 0.3);

    /* Animations */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Header - Modern Floating Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--gradient-primary);
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.header-contact a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.header-contact a:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    color: white;
    width: 26px;
    height: 26px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

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

/* Main Header - Glassmorphism */
.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Modern Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    min-width: 280px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--dark);
    border-radius: 12px;
    transition: var(--transition-fast);
    font-size: 14px;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu a i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover i {
    color: white;
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA Button - Modern */
.cta-button {
    padding: 10px 20px;
    background: var(--gradient-btn);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
}

/* WhatsApp CTA Button */
.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp i {
    font-size: 14px;
}

/* Hero Slider - Ultra Modern */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 120px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.6) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 900px;
    width: 90%;
    padding: 40px;
    z-index: 2;
}

.slide-content.text-left {
    left: 10%;
    transform: translate(0, -50%);
    text-align: left;
}

.slide-content.text-right {
    left: 90%;
    transform: translate(-100%, -50%);
    text-align: right;
}

.slide-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: #fbbf24;
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.slide-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.slide-button {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.slide-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    background: var(--gradient-btn);
    color: white;
}

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

/* Slider Controls - Modern Dots */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 48px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 16px rgba(255,255,255,0.5);
}

/* Services Section - Modern Card Grid */
.services-section {
    padding: 120px 40px;
    background: var(--light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, white 0%, transparent 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.section-header h2 {
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
    font-weight: 500;
}

/* Modern Service Cards - Glassmorphism */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 28px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 48px rgba(102, 126, 234, 0.5);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Why Choose Us Section - Split Design */
.why-section {
    padding: 120px 40px;
    background: white;
}

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

.why-card {
    background: var(--light);
    border-radius: 28px;
    padding: 48px 36px;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-btn);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* CTA Section - Modern Gradient */
.cta-section {
    padding: 120px 40px;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 24px;
    font-weight: 900;
}

.cta-info p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.cta-item-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

/* Modern Contact Form - Glassmorphism */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    color: var(--dark);
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 900;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-colored);
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(102, 126, 234, 0.4);
}

/* Footer - Modern Dark */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 40px 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

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

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    max-width: 180px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 28px;
    font-weight: 800;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    font-size: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

/* Footer Links HTML (TinyMCE) */
.footer-links-html ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-html li {
    margin-bottom: 16px;
}

.footer-links-html a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
}

.footer-links-html a:hover {
    color: white;
    transform: translateX(8px);
}

/* Footer Social Media - Kare Rounded Tasarım */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
    border-color: var(--primary);
}

/* Footer İletişim Bölümü - Görsel Tasarım */
.footer-contact-section {
    min-width: 280px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.footer-contact-info a,
.footer-contact-value {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    opacity: 0.6;
    font-size: 14px;
}

.footer-bottom-right {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-right a {
    color: white;
    transition: var(--transition-fast);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
        margin-top: 80px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content.text-left,
    .slide-content.text-right {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .services-section,
    .why-section,
    .cta-section {
        padding: 80px 24px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        width: 100%;
    }

    /* Footer Contact Responsive */
    .footer-contact-item {
        gap: 12px;
    }

    .footer-contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s;
}

/* ===========================================
   MOBILE MENU STYLES
   =========================================== */

/* Hamburger Icon */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.mobile-menu-logo h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 18px;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: #f3f4f6;
    color: var(--primary);
}

.mobile-nav-item i:first-child {
    width: 20px;
    font-size: 18px;
    color: var(--primary);
}

.mobile-nav-item.has-submenu {
    position: relative;
}

.mobile-nav-item .submenu-arrow {
    margin-left: auto;
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.3s;
}

.mobile-nav-dropdown.open .mobile-nav-item .submenu-arrow {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    background: #f9fafb;
    padding: 8px 0;
}

.mobile-nav-dropdown.open .mobile-submenu {
    display: block;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 12px 58px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.mobile-submenu a:hover {
    color: var(--primary);
    background: #f3f4f6;
}

.mobile-submenu a i {
    width: 16px;
    font-size: 14px;
    color: var(--secondary);
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0891b2 100%);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* Mobile WhatsApp Button */
.mobile-cta-button.mobile-cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mobile-cta-button.mobile-cta-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Contact */
.mobile-menu-contact {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
}

.mobile-menu-contact a i {
    width: 16px;
    color: var(--primary);
}

/* Mobile Menu Social */
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Responsive - Show mobile menu toggle */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu,
    .header-buttons {
        display: none;
    }

    .header-content {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
}

/* =============================================
   GLOBAL FORM STYLES - Modern Dropdown & Scrollbar
   ============================================= */

/* Global Select/Dropdown Styling - Custom arrow icon */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px !important;
    cursor: pointer;
}

select.form-control:focus {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Modern Scrollbar - Global */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #6366f1 #f1f5f9;
}

/* Input/Textarea/Select focus glow effect */
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* reCAPTCHA responsive container */
.g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.85);
        margin: 0 auto;
    }
}
