/* ===================================
   YAF Accounts - Custom Styles
   Modern, Animated, Dark/Light Theme
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Logo Colors - Enhanced */
    --primary-navy: #1a3a52;
    --primary-navy-dark: #0f1f2e;
    --primary-red: #d63447;
    --primary-red-light: #ff6b81;

    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-muted: #999999;

    /* Accent Colors - Expanded */
    --accent-teal: #14b8a6;
    --accent-teal-dark: #0d9488;
    --accent-cyan: #06b6d4;
    --accent-gold: #fbbf24;
    --accent-purple: #8b5cf6;

    /* Gradients - Premium */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-red) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 50%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 40%, rgba(20, 184, 166, 0.1) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Shadows - Multi-layer depth */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(20, 184, 166, 0.4), 0 0 15px rgba(20, 184, 166, 0.2);
    --shadow-glow-strong: 0 0 50px rgba(20, 184, 166, 0.6), 0 0 25px rgba(20, 184, 166, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(12px);

    /* Spacing */
    --nav-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme - Enhanced */
body.dark-mode {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-card: #1e2436;
    --text-primary: #ffffff;
    --text-secondary: #b0b8c4;
    --text-muted: #6b7280;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.5), 0 3px 10px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6), 0 6px 20px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.7), 0 12px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 35px rgba(20, 184, 166, 0.5), 0 0 18px rgba(20, 184, 166, 0.25);
    --shadow-glow-strong: 0 0 55px rgba(20, 184, 166, 0.7), 0 0 28px rgba(20, 184, 166, 0.35);
}

/* RTL Support */
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="rtl"] .navbar-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

body[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--bg-primary);
    padding: 20px 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand .logo {
    height: 50px;
    transition: all var(--transition-normal);
}

.navbar.scrolled .logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 20px !important;
    position: relative;
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-teal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.theme-toggle,
.lang-toggle {
    background: var(--bg-card);
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.theme-toggle:hover,
.lang-toggle:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(20, 184, 166, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1419 50%, var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(214, 52, 71, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid var(--accent-teal);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--accent-teal);
    font-weight: 600;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-primary {
    background: var(--gradient-accent);
    background-size: 200% 200%;
    border: none;
    padding: 16px 42px;
    border-radius: 12px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-normal);
    animation: gradientShift 3s ease infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-slow);
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    color: white;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-navy);
    border-color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light:hover::after {
    left: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-teal);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    animation: fadeIn 1.5s ease;
}

.hero-mockup {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 30px;
    border: 2px solid rgba(20, 184, 166, 0.2);
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(20, 184, 166, 0.4));
    transition: all 0.4s ease;
}

.hero-mockup:hover .hero-main-image {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 25px 80px rgba(20, 184, 166, 0.6));
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--accent-teal);
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--accent-teal);
    font-size: 2rem;
}

/* ===== Section Headers ===== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-secondary);
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-12px) perspective(1000px) rotateX(3deg);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 3s ease infinite;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--bg-primary);
}

.service-image-wrapper {
    position: relative;
    padding: 40px;
}

.service-mockup {
    text-align: center;
    color: var(--accent-teal);
    opacity: 0.2;
    animation: float 5s ease-in-out infinite;
}

.service-main-image {
    position: relative;
    text-align: center;
    padding: 20px;
    animation: float 5s ease-in-out infinite;
}

.service-main-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 50px rgba(20, 184, 166, 0.3));
    transition: all 0.4s ease;
}

.service-main-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 70px rgba(20, 184, 166, 0.5));
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.elem-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.elem-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.elem-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 3s;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-teal);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
}

.service-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-card a,
.contact-card p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-card a:hover {
    color: var(--accent-teal);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    background: var(--bg-secondary);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus {
    background: var(--bg-secondary);
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.1);
    color: var(--text-primary);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
}

.alert {
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.footer-divider {
    border-color: rgba(20, 184, 166, 0.1);
    opacity: 1;
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-3px);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-card {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .footer .text-lg-end,
    .footer .text-lg-start {
        text-align: center !important;
    }
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Selection Color ===== */
::selection {
    background: var(--accent-teal);
    color: white;
}

::-moz-selection {
    background: var(--accent-teal);
    color: white;
}