@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Tajawal:wght@400;500;700&display=swap');


:root {
    /* Core Colors */
    --bg-body: #121212;
    --bg-surface: #1E1E1E;
    --bg-surface-hover: #2C2C2C;

    --text-primary: #ffffff;
    --text-secondary: #B0B0B0;
    --text-muted: #757575;

    /* Accent */
    --accent-primary: #FF9800;
    --accent-hover: #F57C00;
    --accent-gold: #FF9800;
    /* Added for compatibility */

    --border-color: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-ar: 'Tajawal', 'Cairo', sans-serif;
    --font-en: 'Tajawal', sans-serif;

    --transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --radius-btn: 25px;
}

/* Light Mode Variables */
body.light-mode {
    --bg-body: #F5F5F5;
    --bg-surface: #FFFFFF;
    --bg-surface-hover: #F0F0F0;
    --text-primary: #121212;
    --text-secondary: #555555;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-ar);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* General Layout */
.container {
    width: 100%;
    max-width: 1280px;
    /* Reduced from 1280px */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    /* Reduced from 5rem */
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-primary);
}

/* Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    /* Reduced size */
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    font-family: inherit;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-primary);
    /* Orange Border */
    color: #ffffff;
    border-radius: var(--radius-btn);
}

body.light-mode .btn-secondary {
    color: #121212;
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: #fff;
    transform: scale(1.05);
}

/* Navigation Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    transition: background-color 0.3s ease;
}

body.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.75);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: background 0.3s;
}

body.light-mode .logo-img {
    background: transparent;
    padding: 0;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-right: 0.4rem;
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

html[dir="ltr"] .logo-text {
    margin-right: 0;
    margin-left: 0.4rem;
}

.logo {
    text-decoration: none;
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo i {
    display: none;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    text-decoration: none;
    /* Ensure no default underline */
}

/* Restore Golden Hover Line */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    /* Golden/Orange Line */
    transition: width 0.3s;
}

html[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Tools (Left Side) */
.nav-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tool-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
}

.tool-btn:hover {
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 110%;
    min-height: 110%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    opacity: 0;
    animation: desertSlide 40s infinite;
    will-change: transform, opacity;
}

.slide-1 {
    animation-delay: 0s;
}

.slide-2 {
    animation-delay: 8s;
}

.slide-3 {
    animation-delay: 16s;
}

.slide-4 {
    animation-delay: 24s;
}

.slide-5 {
    animation-delay: 32s;
}

@keyframes desertSlide {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    24% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.08);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.08);
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Visa Cards Redesign */
.visa-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    will-change: transform;
    overflow: hidden;
    min-height: 400px;
    /* Reduced from 400px */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    background-size: cover;
    background-position: center;
}

.visa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    z-index: 1;
    transition: var(--transition);
}

.visa-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4));
}

.visa-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Golden line for Visa Card */
.visa-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

.visa-card:hover::after {
    transform: scaleX(1);
}

.visa-card>* {
    position: relative;
    z-index: 2;
}

.visa-icon {
    display: none;
}

.visa-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.visa-card p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.visa-reqs {
    text-align: right;
    margin: 0 0 1.5rem 0;
    list-style-type: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

html[dir="ltr"] .visa-reqs {
    text-align: left;
}

.visa-reqs li {
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.visa-reqs li::before {
    content: '•';
    color: var(--accent-primary);
}

/* Background Images */
.visa-bg-canada {
    background-image: url('../images/visa new images/Canada.jpg');
}

.visa-bg-uk {
    background-image: url('../images/visa new images/UK.jpg');
}

.visa-bg-turkey {
    background-image: url('../images/visa new images/Turkey.jpg');
}

.visa-bg-italy {
    background-image: url('../images/visa new images/Italy.jpg');
}

.visa-bg-spain {
    background-image: url('../images/visa new images/spain.jpg');
}

.visa-bg-malta {
    background-image: url('../images/visa new images/Malta.jpg');
}

.visa-bg-greece {
    background-image: url('../images/visa new images/Greece.jpg');
}

.visa-bg-brazil {
    background-image: url('../images/visa new images/Brazil.jpg');
}

.visa-bg-france {
    background-image: url('../images/visa new images/France.jpg');
}

.visa-bg-netherlands {
    background-image: url('../images/visa new images/Netherlands.jpg');
}

.visa-bg-russia {
    background-image: url('../images/visa new images/Russia.jpg');
}

.visa-bg-thailand {
    background-image: url('../images/visa new images/Thailand.jpg');
}

.visa-bg-vietnam {
    background-image: url('../images/visa new images/Vietnam.jpg');
}

.visa-bg-egypt {
    background-image: url('../images/visa new images/Egypt.jpg');
}

.visa-bg-germany {
    background-image: url('../images/visa new images/germany.jpg');
}

.package-card {
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    will-change: transform;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.pkg-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.pkg-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-title {
    font-size: 1.8rem;
    color: var(--accent-gold);
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Forms */
.form-container {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
    color-scheme: dark;
    /* Forces browser date picker icon to be light */
}

body.light-mode .form-control {
    color-scheme: light;
    /* Forces browser date picker icon to be dark */
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Footer & Extras */
footer {
    background: #050a14;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

body.light-mode footer {
    background: #f0f0f0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .footer-col h4 {
    color: #000;
}

body.light-mode .footer-col a {
    color: #555;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Ensure Alignment matches direction */
html[dir="ltr"] .footer-grid {
    text-align: left;
}

html[dir="rtl"] .footer-grid {
    text-align: right;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    transition: .2s;
}

.footer-col a:hover {
    color: var(--accent-primary);
    padding-inline-start: 5px;
}

/* Contact Info Specific */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    direction: ltr;
    /* Force phone numbers to be LTR mostly for readability, or handle per lang */
}

html[dir="rtl"] .contact-info li {
    direction: rtl;
}

.phone-text {
    direction: ltr;
}

html[dir="rtl"] .phone-text {
    text-align: right;
}

html[dir="ltr"] .phone-text {
    text-align: left;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

body.light-mode .contact-info a {
    color: var(--text-primary);
    /* Fix invisible text in light mode */
}

.contact-info a:hover {
    color: var(--accent-primary);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s;
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium About Intro Section */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-intro-image img:hover {
    transform: scale(1.02);
}

.about-intro-content {
    padding: 2rem 0;
}

.about-intro-title {
    font-size: 3.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-intro-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
}

.about-intro-btn {
    display: inline-block;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.about-intro-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Responsive for About Intro */
@media (max-width: 968px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-intro-title {
        font-size: 2rem;
    }

    .about-intro-text {
        font-size: 1rem;
    }
}

/* Features Section (Integrated) */
.features-section {
    position: relative;
    z-index: 20;
    margin-top: -100px;
    /* Moderate overlap */
    padding-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--bg-surface);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background-color 0.3s ease;
    display: flex;
    will-change: transform;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    background-color: var(--bg-surface-hover);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.feature-btn {
    display: inline-block;
    background-color: var(--accent-primary);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.feature-btn:hover {
    transform: scale(1.05);
}

/* Suggestions Dropdown */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.suggestion-item {
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-inline-start: 1.5rem;
    color: var(--accent-gold);
}

.suggestion-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}

.suggestions-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.suggestions-dropdown::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--accent-gold);
}

/* Why Choose Us Expert Design */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon-wrapper {
    background: var(--accent-gold);
    transform: rotateY(360deg);
}

.why-card:hover .why-icon-wrapper i {
    color: var(--bg-main);
}

.why-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Copy Button & Toast Notification */
.phone-link-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.phone-link-container a {
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: embed;
}

.copy-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
}

.toast-msg {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-main);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast-msg.show {
    opacity: 1;
    visibility: visible;
    bottom: 120px;
}