/**
 * Instagram Beğeni - Paket Satış Sitesi
 * Ana CSS Dosyası
 */

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Brand Colors - Primary Palette */
    --primary-color: #E91E63;
    --primary-light: #F48FB1;
    --primary-dark: #C2185B;
    --secondary-color: #7C6FDC;
    --secondary-light: #B39DDB;
    --secondary-dark: #5E35B1;
    
    /* Semantic Colors */
    --success-color: #25D366;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Neutral Colors - Extended Palette */
    --dark-color: #2c3e50;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white-color: #ffffff;
    
    /* Text Colors */
    --text-color: #333333;
    --text-muted: #6c757d;
    --text-light: #adb5bd;
    --text-on-primary: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #2c3e50;
    
    /* Border & Divider */
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --divider-color: #dee2e6;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    
    /* Border Radius - Design Tokens */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Spacing Scale - Design Tokens */
    --space-1: 0.25rem;  /* 4px */
    --space-2: 0.5rem;   /* 8px */
    --space-3: 0.75rem;  /* 12px */
    --space-4: 1rem;     /* 16px */
    --space-5: 1.25rem;  /* 20px */
    --space-6: 1.5rem;   /* 24px */
    --space-8: 2rem;     /* 32px */
    --space-10: 2.5rem;  /* 40px */
    --space-12: 3rem;    /* 48px */
    --space-16: 4rem;    /* 64px */
    --space-20: 5rem;    /* 80px */
    
    /* Typography Scale - Design Tokens */
    --font-xs: 0.75rem;    /* 12px */
    --font-sm: 0.875rem;   /* 14px */
    --font-base: 1rem;     /* 16px */
    --font-md: 1.125rem;   /* 18px */
    --font-lg: 1.25rem;    /* 20px */
    --font-xl: 1.5rem;     /* 24px */
    --font-2xl: 1.875rem;  /* 30px */
    --font-3xl: 2.25rem;   /* 36px */
    --font-4xl: 3rem;      /* 48px */
    --font-5xl: 3.75rem;   /* 60px */
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

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

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

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient);
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white-color);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.top-actions a {
    margin-left: 15px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.sticky-top {
    box-shadow: var(--shadow);
}

.navbar-brand .logo {
    height: 50px;
    width: 50px;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2));
    transition: all 0.3s ease;
}

.navbar-brand .logo:hover {
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
    transform: scale(1.05);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.navbar-actions .btn {
    padding: 8px 20px;
    border-radius: 25px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    left: -50px;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: -50px;
    right: 100px;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 50%;
    right: -50px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin: 20px 0;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-stats {
    margin-top: 40px;
}

.active-users {
    display: flex;
    align-items: center;
    gap: 15px;
}

.users-avatars {
    display: flex;
}

.users-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white-color);
    margin-left: -10px;
}

.users-avatars img:first-child {
    margin-left: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
}

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    animation: floating 3s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 5%;
    color: #E1306C;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 10%;
    color: #000000;
    animation-delay: 0.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 0;
    color: #FF0000;
    animation-delay: 1s;
}

.floating-icon.icon-4 {
    bottom: 10%;
    right: 5%;
    color: #1DA1F2;
    animation-delay: 1.5s;
}

.floating-icon.icon-5 {
    top: 50%;
    left: 10%;
    color: var(--primary-color);
    animation-delay: 2s;
}

.floating-icon.icon-6 {
    top: 60%;
    right: 15%;
    color: var(--secondary-color);
    animation-delay: 2.5s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* ==================== PLATFORMS SECTION ==================== */
.platforms-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.social-platforms {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.platform-card {
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: block;
}

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

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 28px;
}

.platform-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.section-divider span {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white-color);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0 15px;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-service {
    background: var(--gradient);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-service:hover {
    transform: translateX(5px);
    color: var(--white-color);
}

/* ==================== PACKAGE CARDS ==================== */
.package-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
}

.package-platform {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-quantity {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.package-price {
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
    display: block;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-package {
    background: var(--gradient);
    color: var(--white-color);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    color: var(--white-color);
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white-color);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title a {
    color: var(--text-color);
}

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

.blog-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-count-badge {
    background: var(--gradient);
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
    background: var(--gradient);
    color: var(--white-color);
}

.stat-card {
    padding: 20px;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial-position {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-comment {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-center-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.satisfaction-badge {
    position: absolute;
    bottom: 50px;
    right: -50px;
    background: var(--gradient);
    color: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.satisfaction-badge i {
    font-size: 32px;
}

.satisfaction-badge strong {
    display: block;
    font-size: 16px;
}

.satisfaction-badge p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== FAQ SECTION ==================== */
.faq-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* ==================== CONTACT BUTTONS ==================== */
.contact-buttons h4 {
    font-size: 24px;
    margin-bottom: 30px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #1a1a2e;
    color: var(--white-color);
    position: relative;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-100%);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-wave .shape-fill {
    fill: #1a1a2e;
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-logo img {
    height: 50px;
}

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

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    transition: var(--transition);
}

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

.footer-contact-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info h6 {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.contact-info a {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
}

.payment-methods h6 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.shopier-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.shopier-badge i {
    font-size: 20px;
}

.payment-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-cards i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.payment-cards i:hover {
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== FLOATING BUTTONS ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--gradient);
    border: none;
    color: var(--white-color);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    color: var(--white-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-success {
    background-color: var(--success-color);
    border: none;
}

.btn-success:hover {
    background-color: #1ea952;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .satisfaction-badge {
        position: static;
        margin-top: 30px;
        display: inline-flex;
    }
    
    .navbar-brand .logo {
        height: 45px;
        width: 45px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-6 {
        margin-bottom: 10px;
    }
    
    .contact-info,
    .top-actions {
        justify-content: center;
    }
    
    .navbar-brand .logo {
        height: 40px;
        width: 40px;
    }
    
    .navbar-actions .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible States */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus-visible,
.form-control:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-muted: #333333;
    }
    
    .btn-primary {
        border: 2px solid #000000;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .top-bar,
    .footer,
    .theme-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
}
