/* Main Styles for Fontanesia Website */

/* Color Variables */
:root {
    /* Primary Colors */
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #4f7df3;
    
    /* Secondary Colors */
    --secondary-color: #7209b7;
    --secondary-dark: #6008a0;
    --secondary-light: #8429c7;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --gray-dark: #4a4a68;
    --gray: #8a8aab;
    --gray-light: #e2e2f0;
    --light: #f8f9fa;
    
    /* Gradient Colors */
    --gradient-start: #4361ee;
    --gradient-mid: #3a0ca3;
    --gradient-end: #7209b7;
    
    /* Utility Colors */
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;
    
    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #6c757d;
    
    /* Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 64px;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Z-index */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-md);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-light {
    color: var(--text-light);
}

.text-dark {
    color: var(--text-dark);
}

.text-gray {
    color: var(--text-gray);
}

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

.text-secondary {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-primary {
    background-color: var(--primary-color);
}

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

.bg-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.p-0 {
    padding: 0;
}

.p-20 {
    padding: 20px;
}

.p-40 {
    padding: 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--radius-md);
    font-weight: var(--font-medium);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
}

.cta-button.bg-light {
    background-color: var(--light);
    color: var(--primary-color);
}

.cta-button.bg-light:hover {
    background-color: var(--gray-light);
    color: var(--primary-dark);
}

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

.cta-button.outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

/* Header */
header {
    background-color: var(--light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-50);
    padding: var(--space-md) 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: var(--space-sm);
}

.logo h1 {
    font-size: var(--text-xl);
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: var(--space-xl);
}

nav ul li a {
    color: var(--text-dark);
    font-weight: var(--font-medium);
    position: relative;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Notification Banner */
.notification-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--space-sm) 0;
    position: relative;
}

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

.notification-banner a {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: var(--font-medium);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: var(--text-lg);
    cursor: pointer;
    padding: var(--space-xs);
}

/* Page Header */
.page-header {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: var(--space-xxxl) 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xxl);
}

.hero-text {
    flex: 1;
    padding-right: var(--space-xxl);
}

.hero-text h2 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.hero-text h2 span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero-text h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(67, 97, 238, 0.2);
    z-index: -1;
}

.hero-text p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    color: var(--gray-dark);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: var(--gray-light);
}

.shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider-top .shape-fill {
    fill: var(--gray-light);
}

/* Features Section */
.features {
    padding: var(--space-xxxl) 0;
    background-color: var(--gray-light);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.section-title p {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
}

.feature-card a {
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
}

.feature-card a::after {
    content: '→';
    margin-left: var(--space-xs);
    transition: transform 0.3s ease;
}

.feature-card a:hover::after {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-xxxl) 0;
    background-color: var(--light);
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: var(--space-xxl);
}

.steps::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gray-light);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 2;
}

.step h3 {
    margin-bottom: var(--space-md);
}

.step p {
    color: var(--gray-dark);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xxxl) 0;
    background-color: var(--gray-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    font-size: var(--text-lg);
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
    line-height: 1.8;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 80px;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-right: var(--space-md);
}

.author-info h4 {
    margin-bottom: var(--space-xs);
    font-size: var(--text-base);
}

.author-info p {
    color: var(--gray);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: var(--space-xxl) 0;
    color: var(--text-light);
}

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

/* Contact Section */
.contact {
    padding: var(--space-xxxl) 0;
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    align-items: center;
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
}

.contact-info p {
    margin-bottom: var(--space-xl);
    color: var(--gray-dark);
}

.contact-details {
    margin-top: var(--space-xl);
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.contact-details li svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    margin-right: var(--space-md);
}

.contact-form {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: var(--font-medium);
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-control.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

.success-message {
    color: var(--success);
    font-size: var(--text-base);
    padding: var(--space-md);
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
}

/* Pricing Section */
.pricing {
    padding: var(--space-xxxl) 0;
    background-color: var(--gray-light);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-xxl);
}

.pricing-toggle-label {
    font-weight: var(--font-medium);
    margin: 0 var(--space-md);
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: 0.4s;
    border-radius: 34px;
}

.pricing-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-toggle input:checked + .pricing-toggle-slider {
    background-color: var(--primary-color);
}

.pricing-toggle input:checked + .pricing-toggle-slider:before {
    transform: translateX(30px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pricing-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 40px;
    font-size: var(--text-xs);
    transform: rotate(45deg);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.pricing-card .price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.pricing-card .price span {
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--gray);
}

.pricing-card ul {
    margin-bottom: var(--space-xl);
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
    position: relative;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: var(--font-bold);
}

.pricing-note {
    margin-top: var(--space-xl);
    font-size: var(--text-lg);
    color: var(--gray-dark);
}

/* FAQ Section */
.faq {
    padding: var(--space-xxxl) 0;
    background-color: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.faq-item {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.faq-item p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding-top: var(--space-xxl);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xxl);
    padding-bottom: var(--space-xxl);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 30px;
    margin-right: var(--space-sm);
    filter: brightness(0) invert(1);
}

.footer-logo h2 {
    font-size: var(--text-xl);
    margin-bottom: 0;
    color: var(--text-light);
}

.footer-about p {
    color: var(--gray-light);
    font-size: var(--text-sm);
}

.footer-links h3 {
    color: var(--text-light);
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.footer-links ul li {
    margin-bottom: var(--space-md);
}

.footer-links ul li a {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-light);
}

.footer-contact h3 {
    color: var(--text-light);
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    color: var(--gray-light);
}

.footer-contact ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-light);
    margin-right: var(--space-md);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    text-align: center;
}

.copyright p {
    color: var(--gray-light);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* Terms & Privacy Pages */
.legal-content {
    padding: var(--space-xxxl) 0;
}

.legal-content h2 {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-lg);
}

.legal-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-lg);
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--space-xl);
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: var(--space-md);
}

.legal-content .last-updated {
    font-style: italic;
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 1s ease forwards;
}

/* Animate on Scroll Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
}

.from-left {
    transform: translateX(-50px);
}

.from-right {
    transform: translateX(50px);
}

.from-bottom {
    transform: translateY(50px);
}

.from-top {
    transform: translateY(-50px);
}

.scale-up {
    transform: scale(0.8);
}

.animate-on-scroll.visible.from-left,
.animate-on-scroll.visible.from-right,
.animate-on-scroll.visible.from-bottom,
.animate-on-scroll.visible.from-top {
    transform: translate(0);
}

.animate-on-scroll.visible.scale-up {
    transform: scale(1);
}

/* Delay Classes */
.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-800 {
    transition-delay: 0.8s;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-dark);
}
