/**
 * Güvenli Sürüş Akademisi - Custom Styles
 * Summer Color Palette Theme
 */

/* ========================================
   1. CSS VARIABLES
   ======================================== */

:root {
    /* Summer Color Palette */
    --color-primary: #ffc107;
    --color-secondary: #ffca28;
    --color-accent: #ffd54f;
    --color-light: #ffe082;
    --color-lightest: #ffecb3;
    --color-dark: #2c3e50;
    --color-text: #333333;
    --color-muted: #666666;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   2. GLOBAL STYLES
   ======================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    color: var(--color-dark);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */

header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-primary);
}

header nav {
    padding: 1rem 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

header nav ul li a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

header nav ul li a:hover {
    background: var(--color-lightest);
    color: var(--color-primary);
}

header nav ul li strong {
    color: var(--color-primary);
    font-size: 1.25rem;
}

header nav ul li a[role="button"] {
    background: var(--color-primary);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

header nav ul li a[role="button"]:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. BUTTONS
   ======================================== */

button, [role="button"], .button, input[type="submit"] {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

button:hover, [role="button"]:hover, .button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

button.secondary, [role="button"].secondary, .button.secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

button.secondary:hover, [role="button"].secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* ========================================
   5. HERO SECTION
   ======================================== */

.hero-image-right, .hero-image-left {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    padding: 4rem 0;
}

.hero-image-right .grid-2,
.hero-image-left .grid-2 {
    align-items: center;
    gap: 3rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    color: var(--color-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-list li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

/* ========================================
   6. CONTENT SECTIONS
   ======================================== */

.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.content-section .grid,
.content-section .grid-2,
.content-section .grid-3 {
    align-items: center;
}

.content-image-rounded {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-gradient-bg {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 5rem 0;
}

.content-gradient-bg h2,
.content-gradient-bg h3,
.content-gradient-bg p {
    color: white;
}

.content-centered-max {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 2rem 0;
}

.content-quote {
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid white;
    font-size: 1.125rem;
    font-style: italic;
    margin: 2rem 0;
}

.content-quote-footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
}

.content-cta-section {
    margin-top: 2rem;
}

/* ========================================
   7. PRICING TABLE
   ======================================== */

.pricing-table {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pricing-table-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
}

.pricing-table th {
    padding: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.pricing-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table tbody tr:hover {
    background: #fffbf0;
}

.pricing-table-col-center,
.pricing-table-cell-center {
    text-align: center;
}

.pricing-table-col-highlight {
    background: rgba(255, 193, 7, 0.2);
}

.pricing-table-cell-highlight {
    background: rgba(255, 193, 7, 0.05);
    font-weight: 600;
}

/* ========================================
   8. FAQ SECTION
   ======================================== */

.faq {
    padding: 4rem 0;
}

.faq details {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.faq details:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq details[open] {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-dark);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq summary:hover {
    color: var(--color-primary);
}

.faq details p {
    margin-top: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* ========================================
   9. FORMS
   ======================================== */

.form-sidebar-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-sidebar-section .grid,
.form-sidebar-section .grid-2 {
    align-items: start;
    gap: 3rem;
}

.form-sidebar-aside {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

form label {
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
    font-family: inherit;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* ========================================
   10. FOOTER
   ======================================== */

footer {
    background: var(--color-dark);
    color: white;
    padding: 3rem 0 1rem;
}

footer h3, footer h4 {
    color: white;
    margin-bottom: 1rem;
}

footer a {
    color: white;
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--color-primary);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* ========================================
   11. TOPBAR
   ======================================== */

.topbar {
    background: var(--color-dark);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.topbar-promo {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
    font-weight: 500;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar-promo-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 1rem;
}

.topbar-promo-link:hover {
    color: var(--color-dark);
}

/* ========================================
   12. SOCIAL FLOATING BUTTON
   ======================================== */

.social-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.social-float-button {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.social-float-button:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.social-float-links {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

.social-float-link {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.social-float-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-float-link-facebook:hover { background: #1877f2; color: white; }
.social-float-link-instagram:hover { background: #e4405f; color: white; }
.social-float-link-telegram:hover { background: #0088cc; color: white; }
.social-float-link-youtube:hover { background: #ff0000; color: white; }

/* ========================================
   13. COOKIE MODAL
   ======================================== */

.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.cookie-modal {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.cookie-modal-title {
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cookie-modal-text {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-btn-modal-accept,
.cookie-btn-modal-customize {
    flex: 1;
    padding: 0.875rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-btn-modal-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-btn-modal-accept:hover {
    background: var(--color-secondary);
}

.cookie-btn-modal-customize {
    background: #f0f0f0;
    color: var(--color-dark);
}

.cookie-btn-modal-customize:hover {
    background: #e0e0e0;
}

.cookie-btn-modal-reject {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-btn-modal-reject:hover {
    color: var(--color-dark);
}

.cookie-modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.cookie-modal-link {
    color: var(--color-primary);
}

.topbar-separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ========================================
   14. UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-lg { font-size: 1.25rem; }

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem;
    align-items: start;
}

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    align-items: start;
}

.grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    align-items: start;
}

.grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

/* Gap utilities */
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.gap-lg { gap: 3rem; }

.map-placeholder {
    background: #e5e7eb;
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ========================================
   15. RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.25rem; }
    
    .grid-2, .grid-3, .grid-4,
    .grid-2-1, .grid-1-2 {
        grid-template-columns: 1fr;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-floating {
        bottom: 1rem;
        right: 1rem;
    }
    
    .social-float-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .pricing-table table {
        font-size: 0.875rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .cookie-modal {
        padding: 1.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}

/* ========================================
   16. ARTICLES & CARDS
   ======================================== */

article {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

article h2, article h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

article p {
    color: var(--color-muted);
    line-height: 1.7;
}

/* Pricing Cards */
article[style*="border: 2px solid"] {
    border: 2px solid #e0e0e0 !important;
    transition: var(--transition-base);
}

article[style*="border: 3px solid"] {
    border: 3px solid var(--color-primary) !important;
    position: relative;
}

/* Review Cards */
article[style*="border-left: 4px solid"] {
    border-left: 4px solid var(--color-primary) !important;
    background: #f8f9fa;
}

/* ========================================
   17. BLOCKQUOTES
   ======================================== */

blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--color-text);
}

blockquote footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================
   18. LISTS
   ======================================== */

ul {
    line-height: 1.8;
}

ul li {
    margin-bottom: 0.5rem;
}

ul li i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* ========================================
   19. BADGES & TAGS
   ======================================== */

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========================================
   20. ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease;
}

.animate-slide-up {
    animation: slideInUp 0.6s ease;
}

/* ========================================
   21. SPECIAL SECTIONS
   ======================================== */

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.stats-section h2,
.stats-section h3,
.stats-section p {
    color: white;
}

/* Info Boxes */
.info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1rem 0;
    border-left: 4px solid var(--color-primary);
}

.info-box h3 {
    margin-top: 0;
    color: var(--color-primary);
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    margin: 1rem 0;
}

/* Success Box */
.success-box {
    background: #d4edda;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid #28a745;
    margin: 1rem 0;
}

/* ========================================
   22. ICONS
   ======================================== */

.icon-large {
    font-size: 3rem;
    color: var(--color-primary);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* ========================================
   23. HOVER EFFECTS
   ======================================== */

.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-glow {
    transition: var(--transition-base);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

/* ========================================
   24. LOADING & STATES
   ======================================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   25. PRINT STYLES
   ======================================== */

@media print {
    .social-floating,
    .topbar,
    header nav,
    .cookie-modal-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
}

/* ========================================
   26. ACCESSIBILITY
   ======================================== */

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #d39e00;
        --color-text: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   27. CUSTOM SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* ========================================
   28. SELECTION
   ======================================== */

::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}
