/* Color Variables - Support for Light/Dark Mode */
:root {
    /* Light Theme (Default) - Hybrid Color Palette */
    --primary-color: #6d28d9;
    /* Primary violet */
    --primary-light: #8b5cf6;
    /* Lighter violet */
    --primary-dark: #5b21b6;
    /* Darker violet */
    --accent-color: #2563eb;
    /* Accent blue */
    --accent-light: #3b82f6;
    /* Lighter blue */
    --accent-dark: #1d4ed8;
    /* Darker blue */
    --tertiary-color: #f59e0b;
    /* Tertiary amber */
    --tertiary-light: #fbbf24;
    /* Lighter amber */
    --tertiary-dark: #d97706;
    /* Darker amber */
    --background: #f8fafc;
    --secondary-bg: #f3f4ff;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error-color: #ef4444;
    --info-color: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgba(109, 40, 217, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(109, 40, 217, 0.1), 0 2px 4px -2px rgba(109, 40, 217, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(109, 40, 217, 0.1), 0 4px 6px -4px rgba(109, 40, 217, 0.1);
    --gradient-primary: linear-gradient(to right, #6d28d9, #8b5cf6);
    --gradient-accent: linear-gradient(to right, #2563eb, #3b82f6);
    --gradient-tertiary: linear-gradient(to right, #d97706, #fbbf24);
    --gradient-hybrid: linear-gradient(135deg, #6d28d9, #2563eb, #3b82f6);
    --gradient-secondary: linear-gradient(to right, #f3f4ff, #ede9fe);

    /* City Card Gradients */
    --city-gradient-1: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    --city-gradient-2: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    --city-gradient-3: linear-gradient(135deg, var(--tertiary-light), var(--tertiary-color));
    --city-gradient-4: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    --city-gradient-5: linear-gradient(135deg, var(--accent-light), var(--tertiary-light));
}

/* Dark Theme - Will be toggled via JS */
.dark-theme {
    --primary-color: #a78bfa;
    /* Lighter violet for dark theme */
    --primary-light: #c4b5fd;
    /* Even lighter violet */
    --primary-dark: #8b5cf6;
    /* Standard violet */
    --accent-color: #60a5fa;
    /* Lighter blue for dark theme */
    --accent-light: #93c5fd;
    /* Even lighter blue */
    --accent-dark: #3b82f6;
    /* Standard blue */
    --tertiary-color: #fbbf24;
    /* Lighter amber for dark theme */
    --tertiary-light: #fcd34d;
    /* Even lighter amber */
    --tertiary-dark: #f59e0b;
    /* Standard amber */
    --background: #1e293b;
    --secondary-bg: #0f172a;
    --card-bg: #293548;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --border-color: #3e4c6a;
    --warning-color: #fbbf24;
    --warning-bg: rgba(251, 191, 36, 0.15);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(to right, #8b5cf6, #a78bfa);
    --gradient-accent: linear-gradient(to right, #3b82f6, #60a5fa);
    --gradient-tertiary: linear-gradient(to right, #f59e0b, #fbbf24);
    --gradient-hybrid: linear-gradient(135deg, #8b5cf6, #3b82f6, #60a5fa);
    --gradient-secondary: linear-gradient(to right, #293548, #334155);

    /* City Card Gradients for Dark Theme */
    --city-gradient-1: linear-gradient(135deg, #8b5cf6, #4c1d95);
    --city-gradient-2: linear-gradient(135deg, #60a5fa, #1d4ed8);
    --city-gradient-3: linear-gradient(135deg, #fbbf24, #b45309);
    --city-gradient-4: linear-gradient(135deg, #8b5cf6, #60a5fa);
    --city-gradient-5: linear-gradient(135deg, #60a5fa, #fbbf24);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1rem;
    /* Increased from default for better readability */
}

/* Header and Navigation Improvements - Blog Style */
header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.4s ease;
    height: auto;
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 2rem;
    /* Add margin to the right of the logo */
}

.logo:hover {
    transform: translateY(-2px);
}

.logo i {
    margin-right: 0.75rem;
    font-size: 1.8rem;
    color: var(--accent-color);
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    /* Increase gap between menu items */
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--gradient-hybrid);
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dropdown-toggle:hover {
    color: var(--accent-color);
}

.dropdown-toggle i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    height: auto;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.nav-menu .dropdown-menu a:hover {
    background-color: rgba(37, 99, 235, 0.05);
    color: var(--accent-color);
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

/* Theme Toggle Improvements */
.theme-toggle {
    background: var(--card-bg);
    border: 2px solid var(--accent-light);
    color: var(--accent-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--accent-color);
    color: white;
}

.dark-theme .theme-toggle {
    background: var(--primary-dark);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.dark-theme .theme-toggle:hover {
    background: var(--primary-color);
    color: white;
}

/* Make theme toggle more visible on mobile */
@media (max-width: 768px) {
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        position: absolute;
        right: 5rem;
        top: 1rem;
    }

    .nav-container {
        position: relative;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.05);
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.mobile-menu-btn.active {
    background-color: rgba(37, 99, 235, 0.2);
    color: var(--accent-color);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 5rem auto 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Violet icon */
.violet-icon {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.social-links a:hover .violet-icon {
    transform: scale(1.2);
    color: #6d28d9;
    text-shadow: 0 0 15px rgba(109, 40, 217, 0.4);
}

/* Enhanced Promo Banner Styles */


/* Enhanced Promo Banner - Modern Card Design */
.promo-banner {
    position: relative;
    border-radius: 1.25rem;
    margin: 2rem auto 3rem;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    max-width: 900px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}

.promo-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.08));
    z-index: 1;
    opacity: 0.8;
}

.dark-theme .promo-banner-background {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.1));
}

.promo-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 1.5rem;
    align-items: center;
    gap: 1.5rem;
}

.promo-icon-container {
    flex-shrink: 0;
}

.promo-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-50%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.promo-icon-circle i {
    font-size: 1.8rem;
    color: white;
}

.promo-content {
    flex-grow: 1;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.promo-badge {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(124, 58, 237, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.promo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transition: all 0.5s ease;
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.promo-button:hover::before {
    left: 100%;
}

.promo-button i {
    font-size: 1.1rem;
}

.promo-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    color: var(--tertiary-color);
}

.stars i {
    margin-right: 0.15rem;
}

.promo-rating span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.promo-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .promo-content-wrapper {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
    }

    .promo-header {
        justify-content: center;
    }

    .promo-actions {
        justify-content: center;
    }

    .promo-icon-circle {
        margin: 0 auto;
    }

    .promo-badge {
        margin: 0 auto;
    }

    .promo-description {
        margin-bottom: 1rem;
    }
}

/* Headings with Hybrid Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
    display: inline-block;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.75rem 0 1.25rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    opacity: 0.8;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--accent-color);
}

/* Section Titles with Icons */
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient-hybrid);
    border-radius: 3px;
}

.section-title i {
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2 {
    margin: 0 0 0.25rem;
}

.section-title h2::after {
    display: none;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: -0.3rem 0 0.8rem;
    text-align: center;
}

/* Footer Improvements - Blog Style */
footer {
    background-color: var(--secondary-bg);
    padding: 4rem 0 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.35rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.05);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    background-color: rgba(37, 99, 235, 0.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin: 0 0 15px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 3.5rem;
        flex-direction: column;
        background-color: var(--card-bg);
        width: 100%;
        border-radius: 0 0 10px 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        z-index: 40;
        max-height: calc(100vh - 3.5rem);
        overflow-y: auto;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
        height: auto;
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    /* Mobile dropdown styles */
    .nav-menu .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 100%;
        margin: 0 auto;
    }

    .nav-menu .dropdown-toggle {
        justify-content: center;
        padding: 0.5rem 0;
        width: 100%;
        height: auto;
        text-align: center;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        background-color: var(--secondary-bg);
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        margin: 0.5rem auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        border: none;
        text-align: center;
        box-sizing: border-box;
    }

    .nav-menu .dropdown-menu li {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .nav-menu .dropdown-menu a {
        padding: 0.8rem 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown-menu::before {
        display: none;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu .dropdown-toggle::after {
        content: none;
    }

    .nav-menu .dropdown-toggle i {
        margin-left: 5px;
        font-size: 0.8rem;
    }

    .nav-menu .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 51;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    main {
        margin: 4rem auto 1rem;
    }

    .section {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .converter-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Add styling for converter actions to center the buttons */
.converter-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Conversion result container styling for improved display */
.source-time-container,
.target-time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(109, 40, 217, 0.05) 100%);
    border-radius: 1rem;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.source-time-container:hover,
.target-time-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
}

.time-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.source-time-container:hover .time-display,
.target-time-container:hover .time-display {
    color: var(--accent-color);
}

.city-display {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.date-display {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.result-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.result-arrow i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.result-container:hover .result-arrow i {
    transform: translateX(8px);
    color: var(--primary-color);
}

/* Simplify the result display to match the screenshot */
.result-container {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.08);
    position: relative;
    max-width: 400px;
    min-height: 120px;
    text-align: center;
}

#result {
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

#result.show {
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: auto;
}

#result .time-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* NEW - Redesigned Hero Section with Hybrid Colors */
.hero-section {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.time-illustration {
    opacity: 0;
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    will-change: transform, opacity;
    contain: layout paint;
    aspect-ratio: 16/9;
    transform: translateZ(0);
    backface-visibility: hidden;
    content-visibility: auto;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.time-illustration.loaded {
    opacity: 1;
}

.time-illustration:hover {
    transform: translateY(-5px) translateZ(0);
    filter: drop-shadow(0 8px 15px rgba(37, 99, 235, 0.15));
}

/* Button Improvements with Hybrid Colors */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
}

.btn i {
    margin-right: 0.4rem;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(-2px);
}

.btn-primary {
    background: var(--gradient-hybrid);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 75%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gradient-tertiary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.2);
    border-color: transparent;
}

.btn-secondary {
    background: var(--gradient-tertiary);
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.btn-secondary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
}

/* Improved Converter Container with Hybrid Colors */
.converter-container {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg), 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

@media (max-width: 768px) {
    .converter-container {
        padding: 0;
        border-radius: 1.25rem;
        margin-bottom: 2rem;
    }

    .converter-tab-content {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 400px) {
    .converter-container {
        border-radius: 1rem;
    }

    .converter-tab-content {
        padding: 1rem 0.75rem;
    }
}

.converter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-hybrid);
    z-index: 1;
}

.converter-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(37, 99, 235, 0.25);
}

.converter-tabs {
    display: flex;
    background-color: var(--secondary-bg);
    padding: 0.5rem;
    border-radius: 0.75rem;
    margin: 1.25rem;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}

.converter-tab {
    flex: 1;
    padding: 0.85rem 1rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.converter-tab[data-tab="simpleConverter"]::before,
.converter-tab[data-tab="simpleConverter"].active {
    background-image: linear-gradient(120deg, rgba(37, 99, 235, 0.1), rgba(109, 40, 217, 0.08));
}

.converter-tab[data-tab="timeDifference"]::before,
.converter-tab[data-tab="timeDifference"].active {
    background-image: linear-gradient(120deg, rgba(79, 70, 229, 0.1), rgba(245, 158, 11, 0.08));
}

.converter-tab[data-tab="meetingPlanner"]::before,
.converter-tab[data-tab="meetingPlanner"].active {
    background-image: linear-gradient(120deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
}

.converter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.converter-tab:hover::before {
    opacity: 0.6;
}

.converter-tab.active {
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 1;
}

/* Add bottom indicator for active tab */
.converter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15%;
    width: 70%;
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Specific gradient colors for each tab's indicator */
.converter-tab[data-tab="simpleConverter"].active::after {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
}

.converter-tab[data-tab="timeDifference"].active::after {
    background: linear-gradient(to right, var(--tertiary-color), var(--accent-color));
}

.converter-tab[data-tab="meetingPlanner"].active::after {
    background: linear-gradient(to right, var(--primary-light), var(--tertiary-light));
}

.converter-tab:hover:not(.active) {
    color: var(--accent-color);
}

.converter-tab[data-tab="simpleConverter"]:hover:not(.active) {
    color: var(--accent-dark);
}

.converter-tab[data-tab="timeDifference"]:hover:not(.active) {
    color: var(--tertiary-color);
}

.converter-tab[data-tab="meetingPlanner"]:hover:not(.active) {
    color: var(--primary-color);
}

.converter-tab-content {
    display: none;
    padding: 1.75rem;
}

.converter-tab-content.active {
    display: block;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.converter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.converter-column {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Form controls with hybrid colors */
input[type="time"],
input[type="date"],
select,
.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.05);
}

/* Fixed width for time input to accommodate AM/PM */
input[type="time"] {
    min-width: 150px;
    position: relative;
}

/* Custom time input for 12-hour format support */
input[type="time"].time-12h::before {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 1.25rem;
    background: var(--card-bg);
    display: flex;
    align-items: center;
}

input[type="time"]:focus,
input[type="date"]:focus,
select:focus,
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

input[type="time"]:hover,
input[type="date"]:hover,
select:hover,
.form-control:hover {
    border-color: var(--accent-light);
}

/* Improved Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

select {
    appearance: none;
    padding-right: 2.5rem;
}

/* Result Container Improvements with Hybrid Colors */
.result-container {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 1.75rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
    overflow: hidden;
}

.result-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.result-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

#result {
    font-size: 1.1rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
}

#result.show {
    opacity: 1;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: auto;
}

#result div {
    margin: 0.25rem 0;
    font-weight: 500;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
}

.result-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0 0.75rem;
    transition: transform 0.3s ease;
}

.result-container:hover .result-arrow {
    transform: translateX(5px);
}

/* World Clocks Section with Hybrid Colors */
.world-clocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.world-clock {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    animation: fadeIn 0.5s ease;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    overflow: hidden;
}

.world-clock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.world-clock::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--gradient-hybrid);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    transition: all 0.4s ease;
}

.world-clock:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.world-clock:hover::before {
    opacity: 1;
}

.world-clock:hover::after {
    transform: scale(1.5);
    opacity: 0.1;
}

.city-icon-container {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: -0.5rem auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.world-clock:hover .city-icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.world-clock-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

/* World clock time display */
.world-clock-time {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}

.time-hours,
.time-minutes,
.time-seconds {
    display: inline-block;
    min-width: 1.75rem;
    text-align: center;
}

.time-period {
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.25rem;
    opacity: 0.85;
}

.time-separator {
    opacity: 0.7;
    font-weight: 400;
}

.seconds-separator {
    opacity: 0.5;
}

.world-clock:hover .world-clock-time {
    color: var(--accent-dark);
    transform: scale(1.05);
}

.world-clock-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.world-clock-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(109, 40, 217, 0.1));
    border-radius: 20px;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.world-clock:hover .world-clock-info {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.15), rgba(109, 40, 217, 0.15));
    color: var(--accent-dark);
}

/* World Clock Close Button - Positioned in top-right corner */
.world-clock-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(248, 113, 113, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #f87171;
    font-size: 0.9rem;
    opacity: 0.9;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(248, 113, 113, 0.2);
}

.world-clock-close:hover {
    background: #f87171;
    color: white;
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.3);
}

.dark-theme .world-clock-close {
    background: rgba(248, 113, 113, 0.2);
    color: #fca5a5;
    box-shadow: 0 2px 8px rgba(248, 113, 113, 0.25);
}

.dark-theme .world-clock-close:hover {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Mobile responsive close button */
@media (max-width: 768px) {
    .world-clock-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.85rem;
    }
}

/* Animation for a single digit change */
@keyframes digitChange {
    0% {
        transform: translateY(-2px);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for clock when minutes change */
.time-pulse {
    animation: timePulse 1s ease;
}

/* Special animation for hour changes */
.hour-change {
    animation: hourChange 1.5s ease;
}

@keyframes hourChange {
    0% {
        color: var(--primary-color);
        transform: scale(1.1);
        text-shadow: 0 0 8px rgba(109, 40, 217, 0.4);
    }

    100% {
        color: var(--text-primary);
        transform: scale(1);
        text-shadow: none;
    }
}

@keyframes timePulse {
    0% {
        color: var(--primary-color);
        transform: scale(1.05);
    }

    100% {
        color: var(--text-primary);
        transform: scale(1);
    }
}

/* Time components styling */
.time-hours,
.time-minutes,
.time-seconds {
    display: inline-block;
    min-width: 1.8ch;
    text-align: center;
    transition: color 0.2s ease-in-out;
}

/* Enhance the seconds display with a subtle effect */
.time-seconds {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.time-separator {
    display: inline-block;
    width: 0.5ch;
    text-align: center;
    opacity: 1;
}

/* Only animate the seconds separator */
.seconds-separator {
    animation: blinkSeparator 1s infinite;
}

@keyframes blinkSeparator {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.5;
    }
}

.world-clock-skeleton {
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.world-clock-skeleton::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.actions-bar {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Features Grid with Hybrid Colors */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--accent-color);
}

/* Clickable Feature Cards Enhancement */
.clickable-card {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clickable-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.clickable-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
    pointer-events: none;
}

.clickable-card:hover::after,
.clickable-card:focus::after {
    opacity: 1;
}

.clickable-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.clickable-card:active {
    transform: translateY(-8px) scale(1.01);
    transition: all 0.15s ease;
}

.feature-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.clickable-card:hover .feature-action,
.clickable-card:focus .feature-action {
    opacity: 1;
    transform: translateY(0);
}

.feature-action i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.clickable-card:hover .feature-action i,
.clickable-card:focus .feature-action i {
    transform: translateX(3px);
}

.clickable-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Enhanced hover effects for different action types */
.clickable-card[data-action="converter"]:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.clickable-card[data-action="worldClocks"]:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.clickable-card[data-action="theme"]:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.clickable-card[data-action="meetingPlanner"]:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.clickable-card[data-action="timeDifference"]:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

/* Action-specific icon colors */
.clickable-card[data-action="converter"] .feature-action {
    color: var(--primary-color);
}

.clickable-card[data-action="worldClocks"] .feature-action {
    color: var(--accent-color);
}

.clickable-card[data-action="theme"] .feature-action {
    color: var(--tertiary-color);
}

.clickable-card[data-action="meetingPlanner"] .feature-action {
    color: var(--success-color);
}

.clickable-card[data-action="timeDifference"] .feature-action {
    color: var(--error-color);
}

/* Dark theme adjustments */
.dark-theme .feature-action {
    color: var(--primary-light);
}

.dark-theme .clickable-card[data-action="converter"] .feature-action {
    color: var(--primary-light);
}

.dark-theme .clickable-card[data-action="worldClocks"] .feature-action {
    color: var(--accent-light);
}

.dark-theme .clickable-card[data-action="theme"] .feature-action {
    color: var(--tertiary-light);
}

/* Mobile responsiveness for clickable cards */
@media (max-width: 768px) {
    .clickable-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .feature-action {
        opacity: 1;
        transform: translateY(0);
        margin-top: 1rem;
    }

    .clickable-card:active {
        transform: translateY(-4px) scale(1.005);
    }
}

@media (max-width: 480px) {
    .clickable-card:hover {
        transform: translateY(-6px);
    }

    .feature-action {
        font-size: 0.9rem;
    }
}

/* Enhanced FAQ Accordion Styling */
.accordion {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.2);
}

.accordion-item:hover::before,
.accordion-item.active::before {
    opacity: 1;
}

.accordion-item.active {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    color: var(--primary-color);
}

.accordion-header:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.accordion-header span {
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.accordion-header i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg) scale(1.1);
}

.accordion-header:hover i {
    transform: scale(1.1);
}

.accordion-header[aria-expanded="true"]:hover i {
    transform: rotate(180deg) scale(1.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.5), rgba(241, 245, 249, 0.3));
}

.dark-theme .accordion-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.3));
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
    /* Large enough to accommodate any content */
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.accordion-content li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.accordion-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section Enhancements */
#faq .section-title {
    margin-bottom: 3rem;
}

#faq .section-title i {
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .accordion {
        margin-top: 1.5rem;
    }

    .accordion-item {
        margin-bottom: 0.75rem;
        border-radius: 0.5rem;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .accordion-header span {
        margin-right: 0.75rem;
    }

    .accordion-content {
        padding: 0 1.25rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.25rem 1.25rem;
    }

    .accordion-content ul {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background-color: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-center {
    text-align: center;
    margin-top: 1.5rem;
}

/* Additional Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .converter-grid,
    .features-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .converter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .converter-tab {
        padding: 0.75rem 1rem;
        flex: 0 0 auto;
    }

    .accordion-header[aria-expanded="true"]+.accordion-content {
        max-height: 300px;
    }

    .world-clocks-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

.image-bordered {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.4rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-icon:hover {
    color: var(--primary-color);
    background-color: var(--secondary-bg);
}

.timezone-info {
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    border-left: 3px solid var(--primary-light);
    line-height: 1.3;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.offset-info {
    margin-top: 0.25rem;
    font-size: 0.85em;
    color: var(--text-secondary);
}

.hidden {
    display: none;
}

/* Coming Soon Placeholder */
.coming-soon {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.coming-soon i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

/* Special styling for the button when it's inside the footer */
.footer-bottom .scroll-to-top {
    position: static;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Footer scroll button doesn't need to translate up on hover */
.footer-bottom .scroll-to-top:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Meeting Planner Styles */
.meeting-planner {
    padding: 1rem;
}

.meeting-planner-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meeting-timezone-list {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.meeting-timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.meeting-timezone-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.meeting-timezone-item:hover {
    background-color: rgba(109, 40, 217, 0.05);
    transform: translateX(2px);
}

.meeting-timezone-item:hover::before {
    opacity: 1;
}

.meeting-timezone-item .timezone-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.meeting-timezone-item .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    opacity: 0.9;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.meeting-timezone-item:hover .city-icon {
    transform: scale(1.1);
    opacity: 1;
}

.meeting-timezone-item .remove-timezone-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.meeting-timezone-item .remove-timezone-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

.timezone-local-time {
    font-weight: 600;
}

.timezone-workday-indicator {
    display: flex;
    gap: 0.25rem;
}

.workday-hour {
    width: 8px;
    height: 24px;
    background-color: var(--secondary-bg);
    border-radius: 2px;
}

.workday-hour.working-hour {
    background-color: var(--primary-color);
}

.workday-hour.business-hour {
    background-color: var(--accent-color);
}

.workday-hour.outside-hour {
    background-color: var(--error-color);
    opacity: 0.5;
}

.time-slider-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-time {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 80px;
    text-align: center;
}

.time-slider {
    position: relative;
    margin: 1.5rem 0 0.5rem;
}

.time-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, var(--border-color) 50%, var(--border-color) 100%);
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.time-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.time-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

.slider-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    background-color: rgba(109, 40, 217, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.slider-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.meeting-time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-result-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.time-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: var(--city-gradient-1);
    opacity: 0.9;
    transition: height 0.3s ease;
}

.time-result-card:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.time-result-card:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.time-result-card:nth-child(4n)::before {
    background-image: var(--city-gradient-4);
}

.time-result-card:nth-child(5n)::before {
    background-image: var(--city-gradient-5);
}

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

.time-result-card:hover::before {
    height: 6px;
}

.time-result-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.time-result-city .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.time-result-card:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.time-result-card:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.time-result-card:nth-child(4n) .city-icon {
    background: var(--city-gradient-4);
}

.time-result-card:nth-child(5n) .city-icon {
    background: var(--city-gradient-5);
}

.time-result-card:hover .city-icon {
    transform: scale(1.1) rotate(10deg);
}

.time-result-datetime {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.time-result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-right: 0.25rem;
}

.status-dot.business {
    background-color: var(--success-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.outside {
    background-color: var(--tertiary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-dot.sleeping {
    background-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Alternate Tag Style */
.timezone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.timezone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--city-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timezone-tag:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.timezone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timezone-tag:hover::before {
    opacity: 0.07;
}

.timezone-tag .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
}

.timezone-tag:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.timezone-tag .timezone-name {
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
}

.timezone-tag .remove-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1;
}

.timezone-tag .remove-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meeting-timezone-item {
        padding: 0.75rem 0.5rem;
    }

    .time-result-card {
        padding: 1rem;
    }

    .time-result-city {
        font-size: 1rem;
    }

    .time-result-datetime {
        font-size: 1.1rem;
    }

    .timezone-tag {
        margin: 0.25rem 0.15rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Meeting Planner Tips Section */
.meeting-planner-tips {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meeting-planner-tips .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.meeting-planner-tips .section-title i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.meeting-planner-tips .section-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tip-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meeting-planner-tips {
        padding: 1rem;
    }

    .meeting-planner-tips .section-title h3 {
        font-size: 1.1rem;
    }

    .tip-text {
        font-size: 0.9rem;
    }
}

/* Homepage Hero Section Improvements */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.home-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    position: relative;
}

.home-hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.home-hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.home-hero-image:hover {
    transform: translateY(-10px);
}

/* Homepage Feature Section Improvements */
.home-features {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.home-features::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.home-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Homepage Call to Action Section Improvements */
.home-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.home-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Homepage Testimonials Section Improvements */
.home-testimonials {
    padding: 5rem 1rem;
    background-color: var(--card-bg);
    position: relative;
}

.home-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: var(--accent-light);
    opacity: 0.2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Homepage FAQ Section Improvements */
.home-faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-tertiary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .home-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .home-hero-image {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.2rem;
    }

    .home-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-subtitle {
        font-size: 1.1rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-bottom-spacing {
    margin-top: 2.5rem;
    display: block;
}

/* Legal Document Styling */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--background);
    min-height: calc(100vh - 200px);
}

.legal-content {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    line-height: 1.7;
    font-size: 1rem;
}

.legal-content h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-content h1 i {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.legal-content h2 {
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-content li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Terms-specific styling */
.terms-intro {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.contact-info {
    background: var(--secondary-bg);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.terms-acknowledgment {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.08));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--primary-color);
    margin: 2rem 0;
    text-align: center;
}

.terms-acknowledgment p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.legal-content .btn-bottom-spacing {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ensure button visibility in legal documents */
.legal-content .btn-primary {
    background: var(--gradient-tertiary);
    color: white;
    border: 2px solid var(--tertiary-color);
}

.legal-content .btn-primary:hover {
    background: var(--tertiary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
}

/* Responsive adjustments for legal documents */
@media (max-width: 768px) {
    .legal-document {
        padding: 1rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .legal-content h1 i {
        font-size: 1.8rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content p {
        text-align: left;
    }

    .legal-content ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Fix result container overflow and card sizing */
.result-container {
    max-width: 900px;
    width: 100%;
    overflow: visible;
}

.source-time-container,
.target-time-container {
    min-width: 160px;
    max-width: 260px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        max-width: 98vw;
        width: 100%;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Schedule Meeting Dropdown */
.schedule-meeting-dropdown {
    position: relative;
    display: inline-block;
}

.schedule-meeting-options {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.schedule-meeting-options.show {
    display: block;
}

.schedule-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

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

.schedule-option i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.schedule-option[data-calendar="google"] i {
    color: #4285F4;
}

.schedule-option[data-calendar="outlook"] i {
    color: #0078D4;
}

.schedule-option[data-calendar="apple"] i {
    color: #A2AAAD;
}

.schedule-option[data-calendar="ics"] i {
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
}

/* Meeting confirmation dialog */
.meeting-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    z-index: 1000;
    max-width: 90%;
    width: 450px;
}

.meeting-confirmation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meeting-confirmation h3 {
    margin: 0;
    font-size: 1.25rem;
}

.meeting-confirmation-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.meeting-form-group {
    margin-bottom: 1rem;
}

.meeting-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.meeting-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.meeting-confirmation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .meeting-planner-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .meeting-planner-actions button,
    .schedule-meeting-dropdown {
        width: 100%;
    }

    .schedule-meeting-options {
        width: 100%;
        right: auto;
        left: 0;
    }
}

/* Time Difference Calculator Styles */
.time-difference-calculator {
    padding: 1.5rem 0;
}

.time-diff-header {
    text-align: center;
    margin-bottom: 2rem;
}

.time-diff-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.time-diff-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.time-diff-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.time-diff-column {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.time-diff-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-sm);
}

.time-diff-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-diff-options-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-container input[type="checkbox"] {
    margin-right: 0.75rem;
    accent-color: var(--accent-color);
    transform: scale(1.2);
}

.toggle-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.time-diff-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.time-diff-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-result-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.diff-result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diff-result-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.diff-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.diff-detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.diff-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.diff-working-hours {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.diff-location-hours {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    min-width: 250px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-location-hours:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-hours-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.diff-hours-bars {
    display: flex;
    height: 30px;
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.hours-bar {
    height: 100%;
    transition: all 0.3s ease;
}

.hours-bar.work {
    background-color: var(--success-color);
}

.hours-bar.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.hours-bar.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.hours-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.work {
    background-color: var(--success-color);
}

.legend-color.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.legend-color.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.diff-best-time {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.best-time-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.best-time-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.time-diff-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.time-diff-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(109, 40, 217, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.fact-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for Time Difference */
@media (max-width: 768px) {
    .time-diff-grid {
        grid-template-columns: 1fr;
    }

    .time-diff-vs {
        display: none;
    }

    .time-diff-options {
        grid-template-columns: 1fr;
    }

    .time-diff-action {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-result-details {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.hours-time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Weekend warning styles */
.weekend-warning {
    display: flex;
    align-items: flex-start;
    background-color: var(--warning-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--warning-color);
    box-shadow: var(--shadow-sm);
}

.weekend-warning.hidden {
    display: none;
}

.weekend-warning .warning-icon {
    font-size: 1.6rem;
    color: var(--warning-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.weekend-warning .warning-content {
    flex: 1;
}

.weekend-warning .warning-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--warning-color);
}

.weekend-warning .warning-message {
    font-size: 0.95rem;
}

.weekend-warning .warning-message ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.weekend-warning .warning-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.4rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.weekend-warning .warning-close:hover {
    color: var(--warning-color);
}

/* Meeting planner styles */
.meeting-planner {
    padding: 1rem;
}

.meeting-planner-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meeting-timezone-list {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.meeting-timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.meeting-timezone-item:last-child {
    border-bottom: none;
}

.timezone-local-time {
    font-weight: 600;
}

.timezone-workday-indicator {
    display: flex;
    gap: 0.25rem;
}

.workday-hour {
    width: 8px;
    height: 24px;
    background-color: var(--secondary-bg);
    border-radius: 2px;
}

.workday-hour.working-hour {
    background-color: var(--primary-color);
}

.workday-hour.business-hour {
    background-color: var(--accent-color);
}

.workday-hour.outside-hour {
    background-color: var(--error-color);
    opacity: 0.5;
}

.time-slider-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-time {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 80px;
    text-align: center;
}

.time-slider {
    position: relative;
    margin: 1.5rem 0 0.5rem;
}

.time-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, var(--border-color) 50%, var(--border-color) 100%);
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.time-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.time-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

.slider-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    background-color: rgba(109, 40, 217, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.slider-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.meeting-time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-result-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.time-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: var(--city-gradient-1);
    opacity: 0.9;
    transition: height 0.3s ease;
}

.time-result-card:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.time-result-card:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.time-result-card:nth-child(4n)::before {
    background-image: var(--city-gradient-4);
}

.time-result-card:nth-child(5n)::before {
    background-image: var(--city-gradient-5);
}

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

.time-result-card:hover::before {
    height: 6px;
}

.time-result-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.time-result-city .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.time-result-card:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.time-result-card:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.time-result-card:nth-child(4n) .city-icon {
    background: var(--city-gradient-4);
}

.time-result-card:nth-child(5n) .city-icon {
    background: var(--city-gradient-5);
}

.time-result-card:hover .city-icon {
    transform: scale(1.1) rotate(10deg);
}

.time-result-datetime {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.time-result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-right: 0.25rem;
}

.status-dot.business {
    background-color: var(--success-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.outside {
    background-color: var(--tertiary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-dot.sleeping {
    background-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Alternate Tag Style */
.timezone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.timezone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--city-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timezone-tag:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.timezone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timezone-tag:hover::before {
    opacity: 0.07;
}

.timezone-tag .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
}

.timezone-tag:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.timezone-tag .timezone-name {
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
}

.timezone-tag .remove-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1;
}

.timezone-tag .remove-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meeting-timezone-item {
        padding: 0.75rem 0.5rem;
    }

    .time-result-card {
        padding: 1rem;
    }

    .time-result-city {
        font-size: 1rem;
    }

    .time-result-datetime {
        font-size: 1.1rem;
    }

    .timezone-tag {
        margin: 0.25rem 0.15rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Meeting Planner Tips Section */
.meeting-planner-tips {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meeting-planner-tips .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.meeting-planner-tips .section-title i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.meeting-planner-tips .section-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tip-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meeting-planner-tips {
        padding: 1rem;
    }

    .meeting-planner-tips .section-title h3 {
        font-size: 1.1rem;
    }

    .tip-text {
        font-size: 0.9rem;
    }
}

/* Homepage Hero Section Improvements */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.home-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    position: relative;
}

.home-hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.home-hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.home-hero-image:hover {
    transform: translateY(-10px);
}

/* Homepage Feature Section Improvements */
.home-features {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.home-features::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.home-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Homepage Call to Action Section Improvements */
.home-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.home-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Homepage Testimonials Section Improvements */
.home-testimonials {
    padding: 5rem 1rem;
    background-color: var(--card-bg);
    position: relative;
}

.home-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: var(--accent-light);
    opacity: 0.2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Homepage FAQ Section Improvements */
.home-faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-tertiary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .home-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .home-hero-image {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.2rem;
    }

    .home-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-subtitle {
        font-size: 1.1rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-bottom-spacing {
    margin-top: 2.5rem;
    display: block;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Fix result container overflow and card sizing */
.result-container {
    max-width: 900px;
    width: 100%;
    overflow: visible;
}

.source-time-container,
.target-time-container {
    min-width: 160px;
    max-width: 260px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        max-width: 98vw;
        width: 100%;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Schedule Meeting Dropdown */
.schedule-meeting-dropdown {
    position: relative;
    display: inline-block;
}

.schedule-meeting-options {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.schedule-meeting-options.show {
    display: block;
}

.schedule-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

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

.schedule-option i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.schedule-option[data-calendar="google"] i {
    color: #4285F4;
}

.schedule-option[data-calendar="outlook"] i {
    color: #0078D4;
}

.schedule-option[data-calendar="apple"] i {
    color: #A2AAAD;
}

.schedule-option[data-calendar="ics"] i {
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
}

/* Meeting confirmation dialog */
.meeting-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    z-index: 1000;
    max-width: 90%;
    width: 450px;
}

.meeting-confirmation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meeting-confirmation h3 {
    margin: 0;
    font-size: 1.25rem;
}

.meeting-confirmation-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.meeting-form-group {
    margin-bottom: 1rem;
}

.meeting-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.meeting-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.meeting-confirmation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .meeting-planner-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .meeting-planner-actions button,
    .schedule-meeting-dropdown {
        width: 100%;
    }

    .schedule-meeting-options {
        width: 100%;
        right: auto;
        left: 0;
    }
}

/* Time Difference Calculator Styles */
.time-difference-calculator {
    padding: 1.5rem 0;
}

.time-diff-header {
    text-align: center;
    margin-bottom: 2rem;
}

.time-diff-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.time-diff-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.time-diff-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.time-diff-column {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.time-diff-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-sm);
}

.time-diff-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-diff-options-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-container input[type="checkbox"] {
    margin-right: 0.75rem;
    accent-color: var(--accent-color);
    transform: scale(1.2);
}

.toggle-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.time-diff-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.time-diff-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-result-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.diff-result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diff-result-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.diff-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.diff-detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.diff-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.diff-working-hours {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.diff-location-hours {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    min-width: 250px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-location-hours:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-hours-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.diff-hours-bars {
    display: flex;
    height: 30px;
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.hours-bar {
    height: 100%;
    transition: all 0.3s ease;
}

.hours-bar.work {
    background-color: var(--success-color);
}

.hours-bar.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.hours-bar.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.hours-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.work {
    background-color: var(--success-color);
}

.legend-color.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.legend-color.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.diff-best-time {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.best-time-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.best-time-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.time-diff-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.time-diff-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(109, 40, 217, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.fact-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for Time Difference */
@media (max-width: 768px) {
    .time-diff-grid {
        grid-template-columns: 1fr;
    }

    .time-diff-vs {
        display: none;
    }

    .time-diff-options {
        grid-template-columns: 1fr;
    }

    .time-diff-action {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-result-details {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.hours-time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Weekend warning styles */
.weekend-warning {
    display: flex;
    align-items: flex-start;
    background-color: var(--warning-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--warning-color);
    box-shadow: var(--shadow-sm);
}

.weekend-warning.hidden {
    display: none;
}

.weekend-warning .warning-icon {
    font-size: 1.6rem;
    color: var(--warning-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.weekend-warning .warning-content {
    flex: 1;
}

.weekend-warning .warning-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--warning-color);
}

.weekend-warning .warning-message {
    font-size: 0.95rem;
}

.weekend-warning .warning-message ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.weekend-warning .warning-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.4rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.weekend-warning .warning-close:hover {
    color: var(--warning-color);
}

/* Meeting planner styles */
.meeting-planner {
    padding: 1rem;
}

.meeting-planner-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meeting-timezone-list {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.meeting-timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.meeting-timezone-item:last-child {
    border-bottom: none;
}

.timezone-local-time {
    font-weight: 600;
}

.timezone-workday-indicator {
    display: flex;
    gap: 0.25rem;
}

.workday-hour {
    width: 8px;
    height: 24px;
    background-color: var(--secondary-bg);
    border-radius: 2px;
}

.workday-hour.working-hour {
    background-color: var(--primary-color);
}

.workday-hour.business-hour {
    background-color: var(--accent-color);
}

.workday-hour.outside-hour {
    background-color: var(--error-color);
    opacity: 0.5;
}

.time-slider-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-time {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 80px;
    text-align: center;
}

.time-slider {
    position: relative;
    margin: 1.5rem 0 0.5rem;
}

.time-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, var(--border-color) 50%, var(--border-color) 100%);
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.time-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.time-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

.slider-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    background-color: rgba(109, 40, 217, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.slider-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.meeting-time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-result-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.time-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: var(--city-gradient-1);
    opacity: 0.9;
    transition: height 0.3s ease;
}

.time-result-card:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.time-result-card:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.time-result-card:nth-child(4n)::before {
    background-image: var(--city-gradient-4);
}

.time-result-card:nth-child(5n)::before {
    background-image: var(--city-gradient-5);
}

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

.time-result-card:hover::before {
    height: 6px;
}

.time-result-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.time-result-city .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.time-result-card:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.time-result-card:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.time-result-card:nth-child(4n) .city-icon {
    background: var(--city-gradient-4);
}

.time-result-card:nth-child(5n) .city-icon {
    background: var(--city-gradient-5);
}

.time-result-card:hover .city-icon {
    transform: scale(1.1) rotate(10deg);
}

.time-result-datetime {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.time-result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-right: 0.25rem;
}

.status-dot.business {
    background-color: var(--success-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.outside {
    background-color: var(--tertiary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-dot.sleeping {
    background-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Alternate Tag Style */
.timezone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.timezone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--city-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timezone-tag:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.timezone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timezone-tag:hover::before {
    opacity: 0.07;
}

.timezone-tag .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
}

.timezone-tag:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.timezone-tag .timezone-name {
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
}

.timezone-tag .remove-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1;
}

.timezone-tag .remove-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meeting-timezone-item {
        padding: 0.75rem 0.5rem;
    }

    .time-result-card {
        padding: 1rem;
    }

    .time-result-city {
        font-size: 1rem;
    }

    .time-result-datetime {
        font-size: 1.1rem;
    }

    .timezone-tag {
        margin: 0.25rem 0.15rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Meeting Planner Tips Section */
.meeting-planner-tips {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meeting-planner-tips .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.meeting-planner-tips .section-title i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.meeting-planner-tips .section-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tip-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meeting-planner-tips {
        padding: 1rem;
    }

    .meeting-planner-tips .section-title h3 {
        font-size: 1.1rem;
    }

    .tip-text {
        font-size: 0.9rem;
    }
}

/* Homepage Hero Section Improvements */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.home-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    position: relative;
}

.home-hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.home-hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.home-hero-image:hover {
    transform: translateY(-10px);
}

/* Homepage Feature Section Improvements */
.home-features {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.home-features::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.home-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Homepage Call to Action Section Improvements */
.home-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.home-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Homepage Testimonials Section Improvements */
.home-testimonials {
    padding: 5rem 1rem;
    background-color: var(--card-bg);
    position: relative;
}

.home-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: var(--accent-light);
    opacity: 0.2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Homepage FAQ Section Improvements */
.home-faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-tertiary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .home-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .home-hero-image {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.2rem;
    }

    .home-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-subtitle {
        font-size: 1.1rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-bottom-spacing {
    margin-top: 2.5rem;
    display: block;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Fix result container overflow and card sizing */
.result-container {
    max-width: 900px;
    width: 100%;
    overflow: visible;
}

.source-time-container,
.target-time-container {
    min-width: 160px;
    max-width: 260px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        max-width: 98vw;
        width: 100%;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Schedule Meeting Dropdown */
.schedule-meeting-dropdown {
    position: relative;
    display: inline-block;
}

.schedule-meeting-options {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.schedule-meeting-options.show {
    display: block;
}

.schedule-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

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

.schedule-option i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.schedule-option[data-calendar="google"] i {
    color: #4285F4;
}

.schedule-option[data-calendar="outlook"] i {
    color: #0078D4;
}

.schedule-option[data-calendar="apple"] i {
    color: #A2AAAD;
}

.schedule-option[data-calendar="ics"] i {
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
}

/* Meeting confirmation dialog */
.meeting-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    z-index: 1000;
    max-width: 90%;
    width: 450px;
}

.meeting-confirmation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meeting-confirmation h3 {
    margin: 0;
    font-size: 1.25rem;
}

.meeting-confirmation-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.meeting-form-group {
    margin-bottom: 1rem;
}

.meeting-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.meeting-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.meeting-confirmation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .meeting-planner-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .meeting-planner-actions button,
    .schedule-meeting-dropdown {
        width: 100%;
    }

    .schedule-meeting-options {
        width: 100%;
        right: auto;
        left: 0;
    }
}

/* Time Difference Calculator Styles */
.time-difference-calculator {
    padding: 1.5rem 0;
}

.time-diff-header {
    text-align: center;
    margin-bottom: 2rem;
}

.time-diff-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.time-diff-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.time-diff-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.time-diff-column {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.time-diff-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-sm);
}

.time-diff-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-diff-options-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-container input[type="checkbox"] {
    margin-right: 0.75rem;
    accent-color: var(--accent-color);
    transform: scale(1.2);
}

.toggle-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.time-diff-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.time-diff-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-result-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.diff-result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diff-result-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.diff-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.diff-detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.diff-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.diff-working-hours {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.diff-location-hours {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    min-width: 250px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-location-hours:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-hours-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.diff-hours-bars {
    display: flex;
    height: 30px;
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.hours-bar {
    height: 100%;
    transition: all 0.3s ease;
}

.hours-bar.work {
    background-color: var(--success-color);
}

.hours-bar.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.hours-bar.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.hours-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.work {
    background-color: var(--success-color);
}

.legend-color.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.legend-color.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.diff-best-time {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.best-time-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.best-time-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.time-diff-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.time-diff-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(109, 40, 217, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.fact-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for Time Difference */
@media (max-width: 768px) {
    .time-diff-grid {
        grid-template-columns: 1fr;
    }

    .time-diff-vs {
        display: none;
    }

    .time-diff-options {
        grid-template-columns: 1fr;
    }

    .time-diff-action {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-result-details {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.hours-time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Weekend warning styles */
.weekend-warning {
    display: flex;
    align-items: flex-start;
    background-color: var(--warning-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--warning-color);
    box-shadow: var(--shadow-sm);
}

.weekend-warning.hidden {
    display: none;
}

.weekend-warning .warning-icon {
    font-size: 1.6rem;
    color: var(--warning-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.weekend-warning .warning-content {
    flex: 1;
}

.weekend-warning .warning-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--warning-color);
}

.weekend-warning .warning-message {
    font-size: 0.95rem;
}

.weekend-warning .warning-message ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.weekend-warning .warning-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.4rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.weekend-warning .warning-close:hover {
    color: var(--warning-color);
}

/* Meeting planner styles */
.meeting-planner {
    padding: 1rem;
}

.meeting-planner-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meeting-timezone-list {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.meeting-timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.meeting-timezone-item:last-child {
    border-bottom: none;
}

.timezone-local-time {
    font-weight: 600;
}

.timezone-workday-indicator {
    display: flex;
    gap: 0.25rem;
}

.workday-hour {
    width: 8px;
    height: 24px;
    background-color: var(--secondary-bg);
    border-radius: 2px;
}

.workday-hour.working-hour {
    background-color: var(--primary-color);
}

.workday-hour.business-hour {
    background-color: var(--accent-color);
}

.workday-hour.outside-hour {
    background-color: var(--error-color);
    opacity: 0.5;
}

.time-slider-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-time {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 80px;
    text-align: center;
}

.time-slider {
    position: relative;
    margin: 1.5rem 0 0.5rem;
}

.time-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, var(--border-color) 50%, var(--border-color) 100%);
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.time-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.time-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

.slider-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    background-color: rgba(109, 40, 217, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.slider-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.meeting-time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-result-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.time-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: var(--city-gradient-1);
    opacity: 0.9;
    transition: height 0.3s ease;
}

.time-result-card:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.time-result-card:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.time-result-card:nth-child(4n)::before {
    background-image: var(--city-gradient-4);
}

.time-result-card:nth-child(5n)::before {
    background-image: var(--city-gradient-5);
}

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

.time-result-card:hover::before {
    height: 6px;
}

.time-result-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.time-result-city .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.time-result-card:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.time-result-card:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.time-result-card:nth-child(4n) .city-icon {
    background: var(--city-gradient-4);
}

.time-result-card:nth-child(5n) .city-icon {
    background: var(--city-gradient-5);
}

.time-result-card:hover .city-icon {
    transform: scale(1.1) rotate(10deg);
}

.time-result-datetime {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.time-result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-right: 0.25rem;
}

.status-dot.business {
    background-color: var(--success-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.outside {
    background-color: var(--tertiary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-dot.sleeping {
    background-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Alternate Tag Style */
.timezone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.timezone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--city-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timezone-tag:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.timezone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timezone-tag:hover::before {
    opacity: 0.07;
}

.timezone-tag .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
}

.timezone-tag:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.timezone-tag .timezone-name {
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
}

.timezone-tag .remove-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1;
}

.timezone-tag .remove-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meeting-timezone-item {
        padding: 0.75rem 0.5rem;
    }

    .time-result-card {
        padding: 1rem;
    }

    .time-result-city {
        font-size: 1rem;
    }

    .time-result-datetime {
        font-size: 1.1rem;
    }

    .timezone-tag {
        margin: 0.25rem 0.15rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Meeting Planner Tips Section */
.meeting-planner-tips {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meeting-planner-tips .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.meeting-planner-tips .section-title i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.meeting-planner-tips .section-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tip-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meeting-planner-tips {
        padding: 1rem;
    }

    .meeting-planner-tips .section-title h3 {
        font-size: 1.1rem;
    }

    .tip-text {
        font-size: 0.9rem;
    }
}

/* Homepage Hero Section Improvements */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.home-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    position: relative;
}

.home-hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.home-hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.home-hero-image:hover {
    transform: translateY(-10px);
}

/* Homepage Feature Section Improvements */
.home-features {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.home-features::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.home-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Homepage Call to Action Section Improvements */
.home-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.home-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Homepage Testimonials Section Improvements */
.home-testimonials {
    padding: 5rem 1rem;
    background-color: var(--card-bg);
    position: relative;
}

.home-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: var(--accent-light);
    opacity: 0.2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Homepage FAQ Section Improvements */
.home-faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-tertiary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .home-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .home-hero-image {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.2rem;
    }

    .home-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-subtitle {
        font-size: 1.1rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-bottom-spacing {
    margin-top: 2.5rem;
    display: block;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Fix result container overflow and card sizing */
.result-container {
    max-width: 900px;
    width: 100%;
    overflow: visible;
}

.source-time-container,
.target-time-container {
    min-width: 160px;
    max-width: 260px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        max-width: 98vw;
        width: 100%;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Schedule Meeting Dropdown */
.schedule-meeting-dropdown {
    position: relative;
    display: inline-block;
}

.schedule-meeting-options {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.schedule-meeting-options.show {
    display: block;
}

.schedule-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--gradient-hybrid);
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dropdown-toggle:hover {
    color: var(--accent-color);
}

.dropdown-toggle i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    height: auto;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.nav-menu .dropdown-menu a:hover {
    background-color: rgba(37, 99, 235, 0.05);
    color: var(--accent-color);
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

/* Theme Toggle Improvements */
.theme-toggle {
    background: var(--card-bg);
    border: 2px solid var(--accent-light);
    color: var(--accent-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--accent-color);
    color: white;
}

.dark-theme .theme-toggle {
    background: var(--primary-dark);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.dark-theme .theme-toggle:hover {
    background: var(--primary-color);
    color: white;
}

/* Make theme toggle more visible on mobile */
@media (max-width: 768px) {
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        position: absolute;
        right: 5rem;
        top: 1rem;
    }

    .nav-container {
        position: relative;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.05);
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.mobile-menu-btn.active {
    background-color: rgba(37, 99, 235, 0.2);
    color: var(--accent-color);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 5rem auto 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Violet icon */
.violet-icon {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.social-links a:hover .violet-icon {
    transform: scale(1.2);
    color: #6d28d9;
    text-shadow: 0 0 15px rgba(109, 40, 217, 0.4);
}

/* Enhanced Promo Banner Styles */


/* Enhanced Promo Banner - Modern Card Design */
.promo-banner {
    position: relative;
    border-radius: 1.25rem;
    margin: 2rem auto 3rem;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    max-width: 900px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}

.promo-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.08));
    z-index: 1;
    opacity: 0.8;
}

.dark-theme .promo-banner-background {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.1));
}

.promo-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 1.5rem;
    align-items: center;
    gap: 1.5rem;
}

.promo-icon-container {
    flex-shrink: 0;
}

.promo-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-50%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.promo-icon-circle i {
    font-size: 1.8rem;
    color: white;
}

.promo-content {
    flex-grow: 1;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.promo-badge {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(124, 58, 237, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.promo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transition: all 0.5s ease;
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.promo-button:hover::before {
    left: 100%;
}

.promo-button i {
    font-size: 1.1rem;
}

.promo-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    color: var(--tertiary-color);
}

.stars i {
    margin-right: 0.15rem;
}

.promo-rating span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.promo-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .promo-content-wrapper {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
    }

    .promo-header {
        justify-content: center;
    }

    .promo-actions {
        justify-content: center;
    }

    .promo-icon-circle {
        margin: 0 auto;
    }

    .promo-badge {
        margin: 0 auto;
    }

    .promo-description {
        margin-bottom: 1rem;
    }
}

/* Headings with Hybrid Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
    display: inline-block;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.75rem 0 1.25rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    opacity: 0.8;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--accent-color);
}

/* Section Titles with Icons */
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient-hybrid);
    border-radius: 3px;
}

.section-title i {
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2 {
    margin: 0 0 0.25rem;
}

.section-title h2::after {
    display: none;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: -0.3rem 0 0.8rem;
    text-align: center;
}

/* Footer Improvements - Blog Style */
footer {
    background-color: var(--secondary-bg);
    padding: 4rem 0 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.35rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.05);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    background-color: rgba(37, 99, 235, 0.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin: 0 0 15px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 3.5rem;
        flex-direction: column;
        background-color: var(--card-bg);
        width: 100%;
        border-radius: 0 0 10px 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        z-index: 40;
        max-height: calc(100vh - 3.5rem);
        overflow-y: auto;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
        height: auto;
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    /* Mobile dropdown styles */
    .nav-menu .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 100%;
        margin: 0 auto;
    }

    .nav-menu .dropdown-toggle {
        justify-content: center;
        padding: 0.5rem 0;
        width: 100%;
        height: auto;
        text-align: center;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        background-color: var(--secondary-bg);
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        margin: 0.5rem auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        border: none;
        text-align: center;
        box-sizing: border-box;
    }

    .nav-menu .dropdown-menu li {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .nav-menu .dropdown-menu a {
        padding: 0.8rem 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown-menu::before {
        display: none;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu .dropdown-toggle::after {
        content: none;
    }

    .nav-menu .dropdown-toggle i {
        margin-left: 5px;
        font-size: 0.8rem;
    }

    .nav-menu .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 51;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    main {
        margin: 4rem auto 1rem;
    }

    .section {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .converter-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Add styling for converter actions to center the buttons */
.converter-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Conversion result container styling for improved display */
.source-time-container,
.target-time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(109, 40, 217, 0.05) 100%);
    border-radius: 1rem;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.source-time-container:hover,
.target-time-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
}

.time-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.source-time-container:hover .time-display,
.target-time-container:hover .time-display {
    color: var(--accent-color);
}

.city-display {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.date-display {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.result-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.result-arrow i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.result-container:hover .result-arrow i {
    transform: translateX(8px);
    color: var(--primary-color);
}

/* Simplify the result display to match the screenshot */
.result-container {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.08);
    position: relative;
    max-width: 400px;
    min-height: 120px;
    text-align: center;
}

#result {
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

#result.show {
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: auto;
}

#result .time-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* NEW - Redesigned Hero Section with Hybrid Colors */
.hero-section {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.time-illustration {
    opacity: 0;
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    will-change: transform, opacity;
    contain: layout paint;
    aspect-ratio: 16/9;
    transform: translateZ(0);
    backface-visibility: hidden;
    content-visibility: auto;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.time-illustration.loaded {
    opacity: 1;
}

.time-illustration:hover {
    transform: translateY(-5px) translateZ(0);
    filter: drop-shadow(0 8px 15px rgba(37, 99, 235, 0.15));
}

/* Button Improvements with Hybrid Colors */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
}

.btn i {
    margin-right: 0.4rem;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(-2px);
}

.btn-primary {
    background: var(--gradient-hybrid);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 75%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gradient-tertiary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.2);
    border-color: transparent;
}

.btn-secondary {
    background: var(--gradient-tertiary);
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.btn-secondary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
}

/* Improved Converter Container with Hybrid Colors */
.converter-container {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg), 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

@media (max-width: 768px) {
    .converter-container {
        padding: 0;
        border-radius: 1.25rem;
        margin-bottom: 2rem;
    }

    .converter-tab-content {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 400px) {
    .converter-container {
        border-radius: 1rem;
    }

    .converter-tab-content {
        padding: 1rem 0.75rem;
    }
}

.converter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-hybrid);
    z-index: 1;
}

.converter-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(37, 99, 235, 0.25);
}

.converter-tabs {
    display: flex;
    background-color: var(--secondary-bg);
    padding: 0.5rem;
    border-radius: 0.75rem;
    margin: 1.25rem;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}

.converter-tab {
    flex: 1;
    padding: 0.85rem 1rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.converter-tab[data-tab="simpleConverter"]::before,
.converter-tab[data-tab="simpleConverter"].active {
    background-image: linear-gradient(120deg, rgba(37, 99, 235, 0.1), rgba(109, 40, 217, 0.08));
}

.converter-tab[data-tab="timeDifference"]::before,
.converter-tab[data-tab="timeDifference"].active {
    background-image: linear-gradient(120deg, rgba(79, 70, 229, 0.1), rgba(245, 158, 11, 0.08));
}

.converter-tab[data-tab="meetingPlanner"]::before,
.converter-tab[data-tab="meetingPlanner"].active {
    background-image: linear-gradient(120deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
}

.converter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.converter-tab:hover::before {
    opacity: 0.6;
}

.converter-tab.active {
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 1;
}

/* Add bottom indicator for active tab */
.converter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15%;
    width: 70%;
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Specific gradient colors for each tab's indicator */
.converter-tab[data-tab="simpleConverter"].active::after {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
}

.converter-tab[data-tab="timeDifference"].active::after {
    background: linear-gradient(to right, var(--tertiary-color), var(--accent-color));
}

.converter-tab[data-tab="meetingPlanner"].active::after {
    background: linear-gradient(to right, var(--primary-light), var(--tertiary-light));
}

.converter-tab:hover:not(.active) {
    color: var(--accent-color);
}

.converter-tab[data-tab="simpleConverter"]:hover:not(.active) {
    color: var(--accent-dark);
}

.converter-tab[data-tab="timeDifference"]:hover:not(.active) {
    color: var(--tertiary-color);
}

.converter-tab[data-tab="meetingPlanner"]:hover:not(.active) {
    color: var(--primary-color);
}

.converter-tab-content {
    display: none;
    padding: 1.75rem;
}

.converter-tab-content.active {
    display: block;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.converter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.converter-column {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Form controls with hybrid colors */
input[type="time"],
input[type="date"],
select,
.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.05);
}

/* Fixed width for time input to accommodate AM/PM */
input[type="time"] {
    min-width: 150px;
    position: relative;
}

/* Custom time input for 12-hour format support */
input[type="time"].time-12h::before {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 1.25rem;
    background: var(--card-bg);
    display: flex;
    align-items: center;
}

input[type="time"]:focus,
input[type="date"]:focus,
select:focus,
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

input[type="time"]:hover,
input[type="date"]:hover,
select:hover,
.form-control:hover {
    border-color: var(--accent-light);
}

/* Improved Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

select {
    appearance: none;
    padding-right: 2.5rem;
}

/* Result Container Improvements with Hybrid Colors */
.result-container {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 1.75rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
    overflow: hidden;
}

.result-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.result-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

#result {
    font-size: 1.1rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
}

#result.show {
    opacity: 1;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: auto;
}

#result div {
    margin: 0.25rem 0;
    font-weight: 500;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
}

.result-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0 0.75rem;
    transition: transform 0.3s ease;
}

.result-container:hover .result-arrow {
    transform: translateX(5px);
}

/* World Clocks Section with Hybrid Colors */
.world-clocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.world-clock {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    animation: fadeIn 0.5s ease;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    overflow: hidden;
}

.world-clock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.world-clock::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--gradient-hybrid);
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    transition: all 0.4s ease;
}

.world-clock:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.world-clock:hover::before {
    opacity: 1;
}

.world-clock:hover::after {
    transform: scale(1.5);
    opacity: 0.1;
}

.city-icon-container {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: -0.5rem auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.world-clock:hover .city-icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.world-clock-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

/* World clock time display */
.world-clock-time {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}

.time-hours,
.time-minutes,
.time-seconds {
    display: inline-block;
    min-width: 1.75rem;
    text-align: center;
}

.time-period {
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.25rem;
    opacity: 0.85;
}

.time-separator {
    opacity: 0.7;
    font-weight: 400;
}

.seconds-separator {
    opacity: 0.5;
}

.world-clock:hover .world-clock-time {
    color: var(--accent-dark);
    transform: scale(1.05);
}

.world-clock-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.world-clock-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(109, 40, 217, 0.1));
    border-radius: 20px;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.world-clock:hover .world-clock-info {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.15), rgba(109, 40, 217, 0.15));
    color: var(--accent-dark);
}

/* Animation for a single digit change */
@keyframes digitChange {
    0% {
        transform: translateY(-2px);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for clock when minutes change */
.time-pulse {
    animation: timePulse 1s ease;
}

/* Special animation for hour changes */
.hour-change {
    animation: hourChange 1.5s ease;
}

@keyframes hourChange {
    0% {
        color: var(--primary-color);
        transform: scale(1.1);
        text-shadow: 0 0 8px rgba(109, 40, 217, 0.4);
    }

    100% {
        color: var(--text-primary);
        transform: scale(1);
        text-shadow: none;
    }
}

@keyframes timePulse {
    0% {
        color: var(--primary-color);
        transform: scale(1.05);
    }

    100% {
        color: var(--text-primary);
        transform: scale(1);
    }
}

/* Time components styling */
.time-hours,
.time-minutes,
.time-seconds {
    display: inline-block;
    min-width: 1.8ch;
    text-align: center;
    transition: color 0.2s ease-in-out;
}

/* Enhance the seconds display with a subtle effect */
.time-seconds {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.time-separator {
    display: inline-block;
    width: 0.5ch;
    text-align: center;
    opacity: 1;
}

/* Only animate the seconds separator */
.seconds-separator {
    animation: blinkSeparator 1s infinite;
}

@keyframes blinkSeparator {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.5;
    }
}

.world-clock-skeleton {
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.world-clock-skeleton::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.actions-bar {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Features Grid with Hybrid Colors */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--accent-color);
}

/* Clickable Feature Cards Enhancement */
.clickable-card {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clickable-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.clickable-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
    pointer-events: none;
}

.clickable-card:hover::after,
.clickable-card:focus::after {
    opacity: 1;
}

.clickable-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.clickable-card:active {
    transform: translateY(-8px) scale(1.01);
    transition: all 0.15s ease;
}

.feature-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.clickable-card:hover .feature-action,
.clickable-card:focus .feature-action {
    opacity: 1;
    transform: translateY(0);
}

.feature-action i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.clickable-card:hover .feature-action i,
.clickable-card:focus .feature-action i {
    transform: translateX(3px);
}

.clickable-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Enhanced hover effects for different action types */
.clickable-card[data-action="converter"]:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.clickable-card[data-action="worldClocks"]:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.clickable-card[data-action="theme"]:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.clickable-card[data-action="meetingPlanner"]:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.clickable-card[data-action="timeDifference"]:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

/* Action-specific icon colors */
.clickable-card[data-action="converter"] .feature-action {
    color: var(--primary-color);
}

.clickable-card[data-action="worldClocks"] .feature-action {
    color: var(--accent-color);
}

.clickable-card[data-action="theme"] .feature-action {
    color: var(--tertiary-color);
}

.clickable-card[data-action="meetingPlanner"] .feature-action {
    color: var(--success-color);
}

.clickable-card[data-action="timeDifference"] .feature-action {
    color: var(--error-color);
}

/* Dark theme adjustments */
.dark-theme .feature-action {
    color: var(--primary-light);
}

.dark-theme .clickable-card[data-action="converter"] .feature-action {
    color: var(--primary-light);
}

.dark-theme .clickable-card[data-action="worldClocks"] .feature-action {
    color: var(--accent-light);
}

.dark-theme .clickable-card[data-action="theme"] .feature-action {
    color: var(--tertiary-light);
}

/* Mobile responsiveness for clickable cards */
@media (max-width: 768px) {
    .clickable-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .feature-action {
        opacity: 1;
        transform: translateY(0);
        margin-top: 1rem;
    }

    .clickable-card:active {
        transform: translateY(-4px) scale(1.005);
    }
}

@media (max-width: 480px) {
    .clickable-card:hover {
        transform: translateY(-6px);
    }

    .feature-action {
        font-size: 0.9rem;
    }
}

/* Enhanced FAQ Accordion Styling */
.accordion {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.2);
}

.accordion-item:hover::before,
.accordion-item.active::before {
    opacity: 1;
}

.accordion-item.active {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    color: var(--primary-color);
}

.accordion-header:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.accordion-header span {
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.accordion-header i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg) scale(1.1);
}

.accordion-header:hover i {
    transform: scale(1.1);
}

.accordion-header[aria-expanded="true"]:hover i {
    transform: rotate(180deg) scale(1.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.5), rgba(241, 245, 249, 0.3));
}

.dark-theme .accordion-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.3));
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
    /* Large enough to accommodate any content */
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.accordion-content li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.accordion-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section Enhancements */
#faq .section-title {
    margin-bottom: 3rem;
}

#faq .section-title i {
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .accordion {
        margin-top: 1.5rem;
    }

    .accordion-item {
        margin-bottom: 0.75rem;
        border-radius: 0.5rem;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .accordion-header span {
        margin-right: 0.75rem;
    }

    .accordion-content {
        padding: 0 1.25rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.25rem 1.25rem;
    }

    .accordion-content ul {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background-color: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-center {
    text-align: center;
    margin-top: 1.5rem;
}

/* Additional Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .converter-grid,
    .features-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .converter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .converter-tab {
        padding: 0.75rem 1rem;
        flex: 0 0 auto;
    }

    .accordion-header[aria-expanded="true"]+.accordion-content {
        max-height: 300px;
    }

    .world-clocks-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

.image-bordered {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.4rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-icon:hover {
    color: var(--primary-color);
    background-color: var(--secondary-bg);
}

.timezone-info {
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    border-left: 3px solid var(--primary-light);
    line-height: 1.3;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.offset-info {
    margin-top: 0.25rem;
    font-size: 0.85em;
    color: var(--text-secondary);
}

.hidden {
    display: none;
}

/* Coming Soon Placeholder */
.coming-soon {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.coming-soon i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

/* Special styling for the button when it's inside the footer */
.footer-bottom .scroll-to-top {
    position: static;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Footer scroll button doesn't need to translate up on hover */
.footer-bottom .scroll-to-top:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Meeting Planner Styles */
.meeting-planner {
    padding: 1rem;
}

.meeting-planner-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meeting-timezone-list {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.meeting-timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.meeting-timezone-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.meeting-timezone-item:hover {
    background-color: rgba(109, 40, 217, 0.05);
    transform: translateX(2px);
}

.meeting-timezone-item:hover::before {
    opacity: 1;
}

.meeting-timezone-item .timezone-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.meeting-timezone-item .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    opacity: 0.9;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.meeting-timezone-item:hover .city-icon {
    transform: scale(1.1);
    opacity: 1;
}

.meeting-timezone-item .remove-timezone-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.meeting-timezone-item .remove-timezone-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

.timezone-local-time {
    font-weight: 600;
}

.timezone-workday-indicator {
    display: flex;
    gap: 0.25rem;
}

.workday-hour {
    width: 8px;
    height: 24px;
    background-color: var(--secondary-bg);
    border-radius: 2px;
}

.workday-hour.working-hour {
    background-color: var(--primary-color);
}

.workday-hour.business-hour {
    background-color: var(--accent-color);
}

.workday-hour.outside-hour {
    background-color: var(--error-color);
    opacity: 0.5;
}

.time-slider-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-time {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 80px;
    text-align: center;
}

.time-slider {
    position: relative;
    margin: 1.5rem 0 0.5rem;
}

.time-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, var(--border-color) 50%, var(--border-color) 100%);
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.time-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.time-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

.slider-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    background-color: rgba(109, 40, 217, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.slider-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.meeting-time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-result-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.time-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: var(--city-gradient-1);
    opacity: 0.9;
    transition: height 0.3s ease;
}

.time-result-card:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.time-result-card:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.time-result-card:nth-child(4n)::before {
    background-image: var(--city-gradient-4);
}

.time-result-card:nth-child(5n)::before {
    background-image: var(--city-gradient-5);
}

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

.time-result-card:hover::before {
    height: 6px;
}

.time-result-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.time-result-city .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.time-result-card:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.time-result-card:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.time-result-card:nth-child(4n) .city-icon {
    background: var(--city-gradient-4);
}

.time-result-card:nth-child(5n) .city-icon {
    background: var(--city-gradient-5);
}

.time-result-card:hover .city-icon {
    transform: scale(1.1) rotate(10deg);
}

.time-result-datetime {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.time-result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-right: 0.25rem;
}

.status-dot.business {
    background-color: var(--success-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.outside {
    background-color: var(--tertiary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-dot.sleeping {
    background-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Alternate Tag Style */
.timezone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.timezone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--city-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timezone-tag:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.timezone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timezone-tag:hover::before {
    opacity: 0.07;
}

.timezone-tag .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
}

.timezone-tag:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.timezone-tag .timezone-name {
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
}

.timezone-tag .remove-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1;
}

.timezone-tag .remove-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meeting-timezone-item {
        padding: 0.75rem 0.5rem;
    }

    .time-result-card {
        padding: 1rem;
    }

    .time-result-city {
        font-size: 1rem;
    }

    .time-result-datetime {
        font-size: 1.1rem;
    }

    .timezone-tag {
        margin: 0.25rem 0.15rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Meeting Planner Tips Section */
.meeting-planner-tips {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meeting-planner-tips .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.meeting-planner-tips .section-title i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.meeting-planner-tips .section-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tip-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meeting-planner-tips {
        padding: 1rem;
    }

    .meeting-planner-tips .section-title h3 {
        font-size: 1.1rem;
    }

    .tip-text {
        font-size: 0.9rem;
    }
}

/* Homepage Hero Section Improvements */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.home-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    position: relative;
}

.home-hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.home-hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.home-hero-image:hover {
    transform: translateY(-10px);
}

/* Homepage Feature Section Improvements */
.home-features {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.home-features::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.home-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Homepage Call to Action Section Improvements */
.home-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.home-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Homepage Testimonials Section Improvements */
.home-testimonials {
    padding: 5rem 1rem;
    background-color: var(--card-bg);
    position: relative;
}

.home-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: var(--accent-light);
    opacity: 0.2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Homepage FAQ Section Improvements */
.home-faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-tertiary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .home-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .home-hero-image {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.2rem;
    }

    .home-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-subtitle {
        font-size: 1.1rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-bottom-spacing {
    margin-top: 2.5rem;
    display: block;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Fix result container overflow and card sizing */
.result-container {
    max-width: 900px;
    width: 100%;
    overflow: visible;
}

.source-time-container,
.target-time-container {
    min-width: 160px;
    max-width: 260px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        max-width: 98vw;
        width: 100%;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Schedule Meeting Dropdown */
.schedule-meeting-dropdown {
    position: relative;
    display: inline-block;
}

.schedule-meeting-options {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.schedule-meeting-options.show {
    display: block;
}

.schedule-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

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

.schedule-option i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.schedule-option[data-calendar="google"] i {
    color: #4285F4;
}

.schedule-option[data-calendar="outlook"] i {
    color: #0078D4;
}

.schedule-option[data-calendar="apple"] i {
    color: #A2AAAD;
}

.schedule-option[data-calendar="ics"] i {
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
}

/* Meeting confirmation dialog */
.meeting-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    z-index: 1000;
    max-width: 90%;
    width: 450px;
}

.meeting-confirmation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meeting-confirmation h3 {
    margin: 0;
    font-size: 1.25rem;
}

.meeting-confirmation-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.meeting-form-group {
    margin-bottom: 1rem;
}

.meeting-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.meeting-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.meeting-confirmation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .meeting-planner-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .meeting-planner-actions button,
    .schedule-meeting-dropdown {
        width: 100%;
    }

    .schedule-meeting-options {
        width: 100%;
        right: auto;
        left: 0;
    }
}

/* Time Difference Calculator Styles */
.time-difference-calculator {
    padding: 1.5rem 0;
}

.time-diff-header {
    text-align: center;
    margin-bottom: 2rem;
}

.time-diff-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.time-diff-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.time-diff-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.time-diff-column {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.time-diff-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-sm);
}

.time-diff-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-diff-options-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-container input[type="checkbox"] {
    margin-right: 0.75rem;
    accent-color: var(--accent-color);
    transform: scale(1.2);
}

.toggle-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.time-diff-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.time-diff-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-result-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.diff-result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diff-result-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.diff-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.diff-detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.diff-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.diff-working-hours {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.diff-location-hours {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    min-width: 250px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-location-hours:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-hours-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.diff-hours-bars {
    display: flex;
    height: 30px;
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.hours-bar {
    height: 100%;
    transition: all 0.3s ease;
}

.hours-bar.work {
    background-color: var(--success-color);
}

.hours-bar.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.hours-bar.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.hours-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.work {
    background-color: var(--success-color);
}

.legend-color.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.legend-color.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.diff-best-time {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.best-time-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.best-time-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.time-diff-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.time-diff-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(109, 40, 217, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.fact-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for Time Difference */
@media (max-width: 768px) {
    .time-diff-grid {
        grid-template-columns: 1fr;
    }

    .time-diff-vs {
        display: none;
    }

    .time-diff-options {
        grid-template-columns: 1fr;
    }

    .time-diff-action {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-result-details {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.hours-time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Weekend warning styles */
.weekend-warning {
    display: flex;
    align-items: flex-start;
    background-color: var(--warning-bg);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--warning-color);
    box-shadow: var(--shadow-sm);
}

.weekend-warning.hidden {
    display: none;
}

.weekend-warning .warning-icon {
    font-size: 1.6rem;
    color: var(--warning-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.weekend-warning .warning-content {
    flex: 1;
}

.weekend-warning .warning-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--warning-color);
}

.weekend-warning .warning-message {
    font-size: 0.95rem;
}

.weekend-warning .warning-message ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.weekend-warning .warning-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.4rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.weekend-warning .warning-close:hover {
    color: var(--warning-color);
}

/* Meeting planner styles */
.meeting-planner {
    padding: 1rem;
}

.meeting-planner-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meeting-timezone-list {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.meeting-timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.meeting-timezone-item:last-child {
    border-bottom: none;
}

.timezone-local-time {
    font-weight: 600;
}

.timezone-workday-indicator {
    display: flex;
    gap: 0.25rem;
}

.workday-hour {
    width: 8px;
    height: 24px;
    background-color: var(--secondary-bg);
    border-radius: 2px;
}

.workday-hour.working-hour {
    background-color: var(--primary-color);
}

.workday-hour.business-hour {
    background-color: var(--accent-color);
}

.workday-hour.outside-hour {
    background-color: var(--error-color);
    opacity: 0.5;
}

.time-slider-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-time {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 0.5rem;
    min-width: 80px;
    text-align: center;
}

.time-slider {
    position: relative;
    margin: 1.5rem 0 0.5rem;
}

.time-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, var(--border-color) 50%, var(--border-color) 100%);
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.time-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.time-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

.slider-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    background-color: rgba(109, 40, 217, 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.slider-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.meeting-time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-result-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.time-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: var(--city-gradient-1);
    opacity: 0.9;
    transition: height 0.3s ease;
}

.time-result-card:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.time-result-card:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.time-result-card:nth-child(4n)::before {
    background-image: var(--city-gradient-4);
}

.time-result-card:nth-child(5n)::before {
    background-image: var(--city-gradient-5);
}

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

.time-result-card:hover::before {
    height: 6px;
}

.time-result-city {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.time-result-city .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.time-result-card:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.time-result-card:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.time-result-card:nth-child(4n) .city-icon {
    background: var(--city-gradient-4);
}

.time-result-card:nth-child(5n) .city-icon {
    background: var(--city-gradient-5);
}

.time-result-card:hover .city-icon {
    transform: scale(1.1) rotate(10deg);
}

.time-result-datetime {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.time-result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-right: 0.25rem;
}

.status-dot.business {
    background-color: var(--success-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.outside {
    background-color: var(--tertiary-color);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-dot.sleeping {
    background-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Alternate Tag Style */
.timezone-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.timezone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--city-gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timezone-tag:nth-child(2n)::before {
    background-image: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n)::before {
    background-image: var(--city-gradient-3);
}

.timezone-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timezone-tag:hover::before {
    opacity: 0.07;
}

.timezone-tag .city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
}

.timezone-tag:nth-child(2n) .city-icon {
    background: var(--city-gradient-2);
}

.timezone-tag:nth-child(3n) .city-icon {
    background: var(--city-gradient-3);
}

.timezone-tag .timezone-name {
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
}

.timezone-tag .remove-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1;
}

.timezone-tag .remove-btn:hover {
    opacity: 1;
    color: var(--error-color);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meeting-timezone-item {
        padding: 0.75rem 0.5rem;
    }

    .time-result-card {
        padding: 1rem;
    }

    .time-result-city {
        font-size: 1rem;
    }

    .time-result-datetime {
        font-size: 1.1rem;
    }

    .timezone-tag {
        margin: 0.25rem 0.15rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Meeting Planner Tips Section */
.meeting-planner-tips {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.meeting-planner-tips .section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.meeting-planner-tips .section-title i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
}

.meeting-planner-tips .section-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tip-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meeting-planner-tips {
        padding: 1rem;
    }

    .meeting-planner-tips .section-title h3 {
        font-size: 1.1rem;
    }

    .tip-text {
        font-size: 0.9rem;
    }
}

/* Homepage Hero Section Improvements */
.home-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(80px);
    z-index: 0;
}

.home-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    position: relative;
}

.home-hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.home-hero-image {
    max-width: 50%;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.home-hero-image:hover {
    transform: translateY(-10px);
}

/* Homepage Feature Section Improvements */
.home-features {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.home-features::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.home-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Homepage Call to Action Section Improvements */
.home-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    opacity: 0.07;
    filter: blur(60px);
    z-index: 0;
}

.home-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.home-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Homepage Testimonials Section Improvements */
.home-testimonials {
    padding: 5rem 1rem;
    background-color: var(--card-bg);
    position: relative;
}

.home-testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-hybrid);
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    color: var(--accent-light);
    opacity: 0.2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Homepage FAQ Section Improvements */
.home-faq {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.home-faq::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-tertiary);
    opacity: 0.05;
    filter: blur(50px);
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Responsive adjustments for homepage */
@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .home-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .home-hero-image {
        max-width: 100%;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.2rem;
    }

    .home-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-subtitle {
        font-size: 1.1rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-bottom-spacing {
    margin-top: 2.5rem;
    display: block;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Fix result container overflow and card sizing */
.result-container {
    max-width: 900px;
    width: 100%;
    overflow: visible;
}

.source-time-container,
.target-time-container {
    min-width: 160px;
    max-width: 260px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

@media (max-width: 700px) {

    .result-container,
    #result.show {
        max-width: 98vw;
        width: 100%;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* Schedule Meeting Dropdown */
.schedule-meeting-dropdown {
    position: relative;
    display: inline-block;
}

.schedule-meeting-options {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.schedule-meeting-options.show {
    display: block;
}

.schedule-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

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

.schedule-option i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.schedule-option[data-calendar="google"] i {
    color: #4285F4;
}

.schedule-option[data-calendar="outlook"] i {
    color: #0078D4;
}

.schedule-option[data-calendar="apple"] i {
    color: #A2AAAD;
}

.schedule-option[data-calendar="ics"] i {
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
}

/* Meeting confirmation dialog */
.meeting-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    z-index: 1000;
    max-width: 90%;
    width: 450px;
}

.meeting-confirmation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meeting-confirmation h3 {
    margin: 0;
    font-size: 1.25rem;
}

.meeting-confirmation-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.meeting-form-group {
    margin-bottom: 1rem;
}

.meeting-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.meeting-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.meeting-confirmation-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .meeting-planner-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .meeting-planner-actions button,
    .schedule-meeting-dropdown {
        width: 100%;
    }

    .schedule-meeting-options {
        width: 100%;
        right: auto;
        left: 0;
    }
}

/* Time Difference Calculator Styles */
.time-difference-calculator {
    padding: 1.5rem 0;
}

.time-diff-header {
    text-align: center;
    margin-bottom: 2rem;
}

.time-diff-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.time-diff-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.time-diff-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.time-diff-column {
    background-color: var(--secondary-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.time-diff-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-sm);
}

.time-diff-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time-diff-options-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.toggle-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-container input[type="checkbox"] {
    margin-right: 0.75rem;
    accent-color: var(--accent-color);
    transform: scale(1.2);
}

.toggle-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.time-diff-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.time-diff-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(109, 40, 217, 0.08) 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-result-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.diff-result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diff-result-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.diff-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.diff-detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.diff-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.diff-working-hours {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.diff-location-hours {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    min-width: 250px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-location-hours:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-hours-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.diff-hours-bars {
    display: flex;
    height: 30px;
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.hours-bar {
    height: 100%;
    transition: all 0.3s ease;
}

.hours-bar.work {
    background-color: var(--success-color);
}

.hours-bar.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.hours-bar.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.hours-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.work {
    background-color: var(--success-color);
}

.legend-color.sleep {
    background-color: var(--error-color);
    opacity: 0.7;
}

.legend-color.other {
    background-color: var(--warning-color);
    opacity: 0.6;
}

.diff-best-time {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.best-time-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.best-time-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.time-diff-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.time-diff-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-diff-fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(109, 40, 217, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.fact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.fact-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for Time Difference */
@media (max-width: 768px) {
    .time-diff-grid {
        grid-template-columns: 1fr;
    }

    .time-diff-vs {
        display: none;
    }

    .time-diff-options {
        grid-template-columns: 1fr;
    }

    .time-diff-action {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-result-details {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

.hours-time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* One-line converter layout */
.one-line-converter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.one-line-converter .converter-item {
    flex: 1 1 200px;
    min-width: 200px;
}

@media (max-width: 992px) {
    .one-line-converter {
        flex-direction: column;
        gap: 1rem;
    }

    .one-line-converter .converter-item {
        width: 100%;
        min-width: 100%;
    }
}

/* Updated mobile styles for form elements in converter */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .form-actions {
        margin-top: 0.5rem;
    }

    .select-wrapper select,
    input[type="time"],
    input[type="date"] {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .converter-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .converter-actions button {
        width: 100%;
    }
}

/* Existing converter grid (for other tabs) */
.converter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

/* Feature notification dialog */
.feature-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 1000;
    max-width: 90%;
    width: 500px;
    text-align: center;
}

.feature-notification-header {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    font-weight: 600;
    transition: color 0.2s;
}

.feature-notification-close:hover {
    color: var(--primary-dark);
}

.feature-notification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Add these to style the Close button */
.feature-notification-action {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.feature-notification-action:hover {
    background-color: var(--primary-dark);
}

/* Redesigned Conversion Result Display */
.result-container {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 3rem auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg), 0 10px 40px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    max-width: 900px;
    width: 100%;
    min-height: 180px;
    text-align: center;
    overflow: visible;
}

.result-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.result-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 15px 60px rgba(124, 58, 237, 0.2);
}

#result {
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.5s ease;
    width: 100%;
    text-align: center;
}

#result.show {
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: auto;
    animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#result div {
    position: relative;
    z-index: 1;
}

.source-time-container,
.target-time-container {
    position: relative;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 1.25rem;
    min-width: 200px;
    max-width: 350px;
    flex: 1 1 250px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.source-time-container:hover,
.target-time-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
}

.time-display {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.source-time-container:hover .time-display,
.target-time-container:hover .time-display {
    transform: scale(1.05);
}

.city-display {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.city-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.date-display {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.timezone-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    background-color: rgba(124, 58, 237, 0.08);
    border-radius: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.result-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    position: relative;
    width: 60px;
    height: 60px;
    background-color: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.result-arrow i {
    transition: all 0.5s ease;
    color: var(--primary-color);
}

.result-container:hover .result-arrow i {
    transform: rotate(360deg);
}

.result-container:hover .result-arrow {
    background-color: rgba(124, 58, 237, 0.2);
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.conversion-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.conversion-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
}

/* Mobile Styles for Conversion Results */
@media (max-width: 768px) {
    .result-container {
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
        border-radius: 1.25rem;
        box-shadow: var(--shadow-md), 0 10px 20px rgba(124, 58, 237, 0.08);
    }

    .result-container,
    #result.show {
        flex-direction: column !important;
        gap: 1rem;
        align-items: center;
    }

    .source-time-container,
    .target-time-container {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }

    .time-display {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .city-display {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .date-display {
        font-size: 0.9rem;
    }

    .result-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        height: 2.5rem;
        width: 2.5rem;
        background-color: var(--primary-light);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .result-arrow i {
        color: white;
        font-size: 1.25rem;
    }

    .result-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
    }

    .btn-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }

    .timezone-info {
        margin-top: 1.5rem;
        padding: 0.75rem;
    }

    .timezone-info p {
        font-size: 0.9rem;
    }
}

/* Small mobile optimizations */
@media (max-width: 400px) {
    .result-container {
        padding: 1.25rem 0.75rem;
        border-radius: 1rem;
        margin: 1rem auto;
    }

    .source-time-container,
    .target-time-container {
        padding: 1rem 0.75rem;
        border-radius: 0.75rem;
    }

    .time-display {
        font-size: 2.5rem;
    }

    .city-display {
        font-size: 1.1rem;
    }

    .date-display {
        font-size: 0.85rem;
    }

    .result-arrow {
        height: 2rem;
        width: 2rem;
        margin: 0.25rem 0;
    }

    .result-arrow i {
        font-size: 1rem;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }
}

/* Time Difference Select Enhancements */
.time-diff-column .select-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.time-diff-column .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.85rem 2.5rem 0.85rem 1.25rem;
    font-size: 1rem;
    width: 100%;
    height: auto;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    box-sizing: border-box;
}

.time-diff-column .select-wrapper select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
    outline: none;
}

.time-diff-column .select-wrapper .fa-chevron-down {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.time-diff-column .select-wrapper select:focus+.fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
}

/* Make sure offset info is clearly visible */
.offset-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    font-weight: 500;
}

/* Swap button animation */
#swapLocationsBtn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#swapLocationsBtn i {
    transition: transform 0.4s ease;
}

#swapLocationsBtn:hover i {
    transform: rotate(180deg);
}

#swapLocationsBtn.active-swap {
    animation: swapButtonPulse 0.5s ease;
}

#swapLocationsBtn.active-swap i {
    animation: swapIconSpin 0.5s ease;
}

@keyframes swapButtonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

@keyframes swapIconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Time difference result update animation */
@keyframes flashUpdate {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
        transform: scale(1);
    }
}

.time-diff-result.flash-update {
    animation: flashUpdate 0.6s ease-in-out;
    background-color: rgba(124, 58, 237, 0.05);
}

/* One-line converter layout */
.one-line-converter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.one-line-converter .converter-item {
    flex: 1 1 200px;
    min-width: 200px;
}

/* Fix for converter container layout */
.converter-container {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    max-width: 1000px;
    width: 100%;
}

/* Converter tabs styling - REMOVED DUPLICATE */

/* Form styling improvements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Input and select styling */
input[type="time"],
input[type="date"],
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

input[type="time"]:focus,
input[type="date"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    font-size: 0.875rem;
}

/* Converter actions */
.converter-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Form hints and actions */
.form-hint {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.form-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* Offset info styling */
.offset-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-style: italic;
}

/* Timezone info box */
.timezone-info {
    background-color: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.timezone-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .one-line-converter {
        flex-direction: column;
        gap: 1rem;
    }

    .one-line-converter .converter-item {
        width: 100%;
        min-width: 100%;
    }
}

/* Updated mobile styles for form elements in converter */
@media (max-width: 768px) {
    .converter-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .converter-tabs {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .converter-tab {
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: none;
        border-radius: 0.5rem;
        margin-bottom: 0.25rem;
    }

    .converter-tab.active {
        background-color: var(--primary-color);
        color: white;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .form-actions {
        margin-top: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .select-wrapper select,
    input[type="time"],
    input[type="date"] {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .converter-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .converter-actions button {
        width: 100%;
    }

    .timezone-info {
        padding: 0.875rem;
        margin-top: 1rem;
    }

    .timezone-info p {
        font-size: 0.9rem;
    }
}

.conversion-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem auto 0;
}

.btn-action {
    min-width: 140px;
    justify-content: center;
}

/* Slightly larger time panels */
.time-panel {
    flex: 1;
    max-width: 300px;
    padding: 2rem 1.5rem;
}

.time-value {
    font-size: 4rem;
}

.time-panel-title {
    margin-bottom: 1rem;
}

#conversionResultContainer {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.result-container {
    width: 100%;
    max-width: 850px;
    margin: 2rem auto;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.result-container.hidden {
    display: none;
}

.result-container:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

.conversion-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 850px;
    gap: 1.5rem;
    position: relative;
    margin: 0 auto;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto 0;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.btn-action {
    width: 40px;
    height: 40px;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-action.copy {
    color: var(--primary-color);
}

.btn-action.copy:hover {
    background-color: rgba(124, 58, 237, 0.1);
    border-color: var(--primary-color);
}

.btn-action.share {
    color: var(--accent-color);
}

.btn-action.share:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-color);
}

.btn-action span {
    display: none;
}

.conversion-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 850px;
    gap: 1.5rem;
    position: relative;
    margin: 0 auto;
    padding: 1rem;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.btn-action {
    width: 32px;
    height: 32px;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    padding: 0;
    font-size: 0.85rem;
    background: rgba(100, 116, 139, 0.1);
    color: rgba(100, 116, 139, 0.8);
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-action:hover {
    background: rgba(100, 116, 139, 0.2);
    color: rgba(100, 116, 139, 1);
    transform: translateY(-1px);
}

.btn-action span {
    display: none;
}

@media (max-width: 768px) {
    .converter-tabs {
        flex-direction: row;
        padding: 0.5rem;
        margin: 0.75rem;
        border-radius: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .converter-tab {
        padding: 0.75rem 0.5rem;
        font-size: 0.95rem;
        flex: 0 0 auto;
    }

    .converter-tab.active {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .converter-tabs {
        margin: 0.5rem;
        padding: 0.35rem;
    }

    .converter-tab {
        padding: 0.6rem 0.4rem;
        font-size: 0.9rem;
    }
}

/* Comprehensive mobile styling for conversion result elements */
@media (max-width: 768px) {
    #conversionResultContainer {
        padding: 0.5rem;
    }

    .conversion-result {
        width: 100%;
        max-width: 100%;
    }

    .time-panels {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .time-panel {
        width: 100%;
        max-width: 300px;
    }

    .conversion-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .result-actions {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
        width: 100%;
        gap: 1rem;
    }

    .btn-action {
        width: auto;
        padding: 0.5rem 0.75rem;
        display: flex;
        align-items: center;
    }

    .btn-action span {
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.85rem;
    }

    .conversion-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 1rem;
        width: 90%;
        margin: 1rem auto 0;
    }
}

@media (max-width: 400px) {
    .converter-tabs {
        margin: 0.5rem;
        padding: 0.35rem;
    }

    .converter-tab {
        padding: 0.6rem 0.4rem;
        font-size: 0.9rem;
    }

    .time-panel {
        padding: 1.5rem 1rem;
    }

    .time-value {
        font-size: 2.8rem;
    }

    .time-location {
        font-size: 1.2rem;
    }

    .conversion-meta {
        width: 100%;
        padding: 1rem 0.5rem 0;
        font-size: 0.85rem;
    }

    .time-details {
        font-size: 0.8rem;
        padding: 0.3rem 0.75rem;
    }

    .result-actions {
        flex-wrap: wrap;
    }
}

/* Mobile-specific conversion result fixes */
@media (max-width: 768px) {

    /* Conversion result title and description */
    .conversion-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .conversion-header p {
        font-size: 0.9rem;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Time panel improvements */
    .time-panel {
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem 1rem;
        width: 85%;
        margin: 0 auto;
    }

    /* Time value fixes */
    .time-value {
        font-size: 3.5rem;
        margin: 0.25rem 0;
        line-height: 1;
    }

    /* City/location name */
    .time-location {
        font-size: 1.5rem;
        margin: 0.25rem 0;
    }

    /* Date display */
    .time-date {
        font-size: 1rem;
        margin: 0.25rem 0 0.5rem;
    }

    /* Time details badge positioning */
    .time-details {
        align-self: center;
    }

    /* Arrow button between panels */
    .conversion-arrow {
        transform: rotate(90deg);
        margin: 0.75rem 0;
        width: 50px;
        height: 50px;
    }

    /* Full width results container */
    #conversionResultContainer {
        width: 95%;
        padding: 0.25rem;
    }
}

@media (max-width: 480px) {

    /* Even smaller screens */
    .conversion-header h3 {
        font-size: 1.4rem;
    }

    .time-value {
        font-size: 3rem;
    }

    .time-location {
        font-size: 1.3rem;
    }

    .time-panel {
        min-height: 160px;
        width: 90%;
    }

    /* Smaller conversion arrow */
    .conversion-arrow {
        width: 45px;
        height: 45px;
    }

    /* DST and timezone info badges */
    .time-details {
        font-size: 0.8rem;
        padding: 0.3rem 0.75rem;
        margin-top: 0.75rem;
    }
}

/* Fixed action buttons in the conversion result */
.conversion-arrow {
    position: relative;
    z-index: 5;
}

/* Container for the action buttons that appear in the center */
.central-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    position: relative;
    z-index: 4;
}

/* Make the buttons in the central area more visually appealing */
.central-actions .btn-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.central-actions .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
}

@media (max-width: 768px) {

    /* Mobile-specific fixes for the central action buttons */
    .central-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin: 1rem 0;
        width: 100%;
    }

    .central-actions .btn-action {
        width: 44px;
        height: 44px;
        background: white;
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
    }

    .conversion-arrow {
        margin-bottom: 0.5rem;
    }

    /* Ensure proper arrow and buttons layout */
    .time-panels {
        margin-bottom: 0;
    }
}

/* Timezone Selection Banner */
.timezone-selection-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.timezone-selection-banner .banner-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.timezone-selection-banner .banner-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.timezone-selection-banner .banner-message {
    flex: 1;
    min-width: 250px;
}

.timezone-selection-banner .banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.timezone-selection-banner .banner-btn {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timezone-selection-banner .banner-btn:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.timezone-selection-banner .banner-btn.primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.timezone-selection-banner .banner-btn.primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.timezone-selection-banner .banner-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timezone-selection-banner .banner-close:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

/* Timezone Update Notification */
.timezone-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.timezone-notification i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .timezone-selection-banner .banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .timezone-selection-banner .banner-actions {
        width: 100%;
        justify-content: space-between;
    }

    .timezone-selection-banner .banner-btn {
        flex: 1;
        text-align: center;
    }

    .timezone-notification {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-10px);
        width: 90%;
        max-width: 400px;
    }
}

/* Timezone Update Notification */
.timezone-update-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-left: 4px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 0.95rem;
}

.timezone-update-notification i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timezone-update-notification.hide {
    opacity: 0;
    transform: translateY(-20px);
}

/* Theme toggle tooltip */
.theme-toggle-tooltip {
    position: absolute;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    top: calc(100% + 10px);
    right: 0;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.theme-toggle:hover .theme-toggle-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.dark-theme .theme-toggle-tooltip {
    content: "Light Mode";
}

/* Hide tooltip on mobile */
@media (max-width: 768px) {
    .theme-toggle-tooltip {
        display: none;
    }
}

/* Ad container styles */
.ad-container {
    margin: 2rem auto;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}

.ad-container:empty {
    display: none;
}

@media (max-width: 768px) {
    .ad-container {
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .ad-container {
        margin: 1rem auto;
    }
}

/* Educational Content Styles - Enhanced Visual Design */
.education-content {
    max-width: 1200px;
    margin: 0 auto;
}

.education-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.05), rgba(37, 99, 235, 0.05));
    border-radius: 1rem;
    border: 1px solid rgba(109, 40, 217, 0.1);
    position: relative;
    overflow: hidden;
}

.education-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hybrid);
}

.education-intro .large-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.dark-theme .education-intro {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.2);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.education-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-hybrid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.education-card:hover::before {
    transform: scaleX(1);
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(109, 40, 217, 0.15);
    border-color: var(--primary-light);
}

.dark-theme .education-card:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.education-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-hybrid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.education-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--card-bg);
    border-radius: 50%;
    z-index: 1;
}

.education-icon i {
    font-size: 2rem;
    background: var(--gradient-hybrid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    position: relative;
}

.education-card:hover .education-icon {
    transform: scale(1.1) rotate(5deg);
    animation: educationIconPulse 2s infinite;
}

@keyframes educationIconPulse {

    0%,
    100% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1.15) rotate(-2deg);
    }
}

.education-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dark-theme .education-card h3 {
    color: var(--primary-light);
}

.education-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.education-card p:last-child {
    margin-bottom: 0;
}

/* Enhanced styling for specific content elements */
.education-fact {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
}

.education-fact::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 1rem;
    background: var(--card-bg);
    font-size: 1.5rem;
    padding: 0 0.5rem;
}

.education-fact strong {
    color: var(--tertiary-color);
    font-weight: 700;
}

.education-examples {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.education-examples h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.education-examples h4::before {
    content: '🌍';
    font-size: 1.2rem;
}

.education-examples ul {
    margin: 0;
    padding-left: 1.5rem;
}

.education-examples li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.education-examples li strong {
    color: var(--accent-color);
    font-weight: 600;
}

.dark-theme .education-examples {
    background: rgba(60, 130, 246, 0.1);
    border-color: rgba(60, 130, 246, 0.2);
}

.education-timeline {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.education-timeline h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.education-timeline h4::before {
    content: '📅';
    font-size: 1.2rem;
}

.education-timeline ul {
    margin: 0;
    padding-left: 1.5rem;
}

.education-timeline li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

.education-timeline li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.education-timeline li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.dark-theme .education-timeline {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.education-tips {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.education-tips h4 {
    color: var(--success-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.education-tips h4::before {
    content: '💼';
    font-size: 1.2rem;
}

.education-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.education-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.education-travel-tips {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.education-travel-tips h4 {
    color: #6366f1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.education-travel-tips h4::before {
    content: '✈️';
    font-size: 1.2rem;
}

.education-travel-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.education-travel-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Call-to-action section */
.education-cta {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #1e293b;
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.1);
}

.education-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: educationCTAFloat 20s infinite linear;
}

@keyframes educationCTAFloat {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.education-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.education-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.education-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.education-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.education-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.education-link i {
    font-size: 1.1rem;
}

/* Responsive design for educational content */
@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .education-card {
        padding: 2rem;
    }

    .education-icon {
        width: 60px;
        height: 60px;
    }

    .education-icon i {
        font-size: 1.5rem;
    }

    .education-card h3 {
        font-size: 1.3rem;
    }

    .education-intro .large-text {
        font-size: 1.1rem;
    }

    .education-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .education-cta h3 {
        font-size: 1.5rem;
    }

    .education-cta p {
        font-size: 1rem;
    }

    .education-links {
        flex-direction: column;
        align-items: center;
    }

    .education-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .education-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .education-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .education-fact,
    .education-examples,
    .education-timeline,
    .education-tips,
    .education-travel-tips {
        padding: 1.25rem;
        margin-top: 1rem;
    }
}

/* Fast-Loading Hero Visuals */
.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
}

.hero-graphics {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timezone-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
    position: relative;
    align-items: center;
    max-width: 200px;
}

.hero-tz-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4338ca, #3b82f6, #06b6d4);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 32px rgba(67, 56, 202, 0.3);
    animation: rotate 20s linear infinite;
    overflow: hidden;
}

.continent {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50% 40% 60% 30%;
}

.continent-1 {
    width: 30px;
    height: 35px;
    top: 20%;
    left: 25%;
    animation: float 3s ease-in-out infinite;
}

.continent-2 {
    width: 25px;
    height: 30px;
    top: 45%;
    right: 20%;
    animation: float 4s ease-in-out infinite reverse;
}

.continent-3 {
    width: 20px;
    height: 25px;
    bottom: 30%;
    left: 40%;
    animation: float 3.5s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    animation: rotate 30s linear infinite reverse;
}

.timezone-indicator {
    position: absolute;
    z-index: 3;
}

.tz-west {
    top: 20%;
    left: 5%;
}

.tz-center {
    top: 10%;
    right: 15%;
}

.tz-east {
    bottom: 15%;
    right: 5%;
}

.tz-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.tz-card.featured {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

.tz-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tz-card.featured:hover {
    transform: translateY(-4px) scale(1.15);
}

.tz-time {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'Courier New', monospace;
}

.tz-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    z-index: 1;
}

.line-1 {
    width: 120px;
    top: 35%;
    left: 20%;
    transform: rotate(-15deg);
    animation: pulse 2s ease-in-out infinite;
}

.line-2 {
    width: 100px;
    bottom: 30%;
    right: 25%;
    transform: rotate(25deg);
    animation: pulse 2s ease-in-out infinite 1s;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.elem-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.elem-2 {
    top: 70%;
    left: 20%;
    animation-delay: 1s;
}

.elem-3 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.dark-theme .tz-card {
    background: rgba(30, 41, 59, 0.95);
    color: var(--text-primary);
    border-color: rgba(124, 58, 237, 0.2);
}

.dark-theme .tz-card.featured {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
}

/* Blog Showcase Section */
.blog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-showcase-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--card-bg), rgba(124, 58, 237, 0.02));
}

.blog-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hybrid);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
}

.blog-showcase-card:hover::before {
    opacity: 1;
}

.blog-showcase-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, rgba(87, 95, 207, 0.1), rgba(59, 130, 246, 0.1));
}

.blog-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-showcase-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-showcase-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    width: fit-content;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.blog-showcase-category i {
    font-size: 0.9rem;
}

.blog-showcase-card:hover .blog-showcase-category {
    background: rgba(87, 95, 207, 0.15);
    transform: translateY(-2px);
}

.blog-showcase-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-showcase-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.3;
}

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

.blog-showcase-excerpt {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
    font-weight: 500;
    opacity: 0.9;
}

.blog-showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(124, 58, 237, 0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
}

.read-time i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.blog-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.blog-showcase-link:hover {
    color: white;
    background: var(--gradient-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.blog-showcase-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-showcase-link:hover i {
    transform: translateX(2px);
}

.blog-showcase-cta {
    text-align: center;
    margin-top: 2rem;
}

.blog-showcase-cta .btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Dark theme adjustments for blog showcase */
.dark-theme .blog-showcase-card {
    border-color: rgba(148, 163, 184, 0.1);
}

.dark-theme .blog-showcase-category {
    background: rgba(148, 163, 184, 0.15);
    color: var(--primary-light);
}

.dark-theme .blog-showcase-card:hover .blog-showcase-category {
    background: rgba(148, 163, 184, 0.2);
}

.dark-theme .blog-showcase-meta {
    border-top-color: rgba(148, 163, 184, 0.1);
}

.dark-theme .blog-showcase-link {
    background: rgba(148, 163, 184, 0.1);
}

.dark-theme .blog-showcase-link:hover {
    background: rgba(148, 163, 184, 0.15);
}

/* Enhanced section title styling for blog showcase */
#blog-showcase .section-title {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

#blog-showcase .section-title p {
    color: #1e293b;
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 600;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

#blog-showcase .section-title h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#blog-showcase .section-title i {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Animation for blog showcase cards */
@keyframes blogCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-showcase-card {
    animation: blogCardSlideUp 0.6s ease-out;
}

.blog-showcase-card:nth-child(2) {
    animation-delay: 0.1s;
}

.blog-showcase-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive design for blog showcase */
@media (max-width: 768px) {
    .blog-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-showcase-image {
        height: 180px;
    }

    .blog-showcase-content {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .blog-showcase-title {
        font-size: 1.15rem;
    }

    .blog-showcase-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .blog-showcase-link {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .blog-showcase-card {
        margin: 0 -0.5rem;
    }

    .blog-showcase-image {
        height: 160px;
    }

    .blog-showcase-content {
        padding: 1rem;
    }

    .blog-showcase-title {
        font-size: 1.1rem;
    }

    .blog-showcase-excerpt {
        font-size: 0.9rem;
    }
}

/* Clean Time Zone Visualization */
.hero-art-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(59, 130, 246, 0.03));
    border-radius: 1rem;
}

.timezone-art {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Clock */
.central-clock {
    position: relative;
    z-index: 10;
}

.clock-face {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 8px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-face::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #ffd700, #b8860b);
    z-index: -1;
}

.clock-rim {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    top: 0;
    left: 0;
}

.clock-markers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 1px;
}

.marker-12 {
    width: 3px;
    height: 15px;
    top: 5px;
    left: 50%;
    margin-left: -1.5px;
}

.marker-3 {
    width: 15px;
    height: 3px;
    right: 5px;
    top: 50%;
    margin-top: -1.5px;
}

.marker-6 {
    width: 3px;
    height: 15px;
    bottom: 5px;
    left: 50%;
    margin-left: -1.5px;
}

.marker-9 {
    width: 15px;
    height: 3px;
    left: 5px;
    top: 50%;
    margin-top: -1.5px;
}

.clock-center {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    z-index: 3;
}

.clock-hand {
    position: absolute;
    background: linear-gradient(135deg, #b8860b, #d4af37);
    border-radius: 2px;
    transform-origin: bottom center;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hour-hand {
    width: 5px;
    height: 32px;
    bottom: 50%;
    left: 50%;
    margin-left: -2.5px;
    transform: rotate(0deg);
    animation: none;
}

.minute-hand {
    width: 3px;
    height: 42px;
    bottom: 50%;
    left: 50%;
    margin-left: -1.5px;
    transform: rotate(0deg);
    animation: none;
}

.second-hand {
    width: 1px;
    height: 45px;
    bottom: 50%;
    left: 50%;
    margin-left: -0.5px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    transform: rotate(0deg);
    z-index: 3;
    animation: none;
}

.timezone-label {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--card-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-sm);
}

/* Person with Note Icon */
.person-icon {
    position: absolute;
    top: -20px;
    right: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    animation: personPulse 3s ease-in-out infinite;
    z-index: 4;
}

.person-icon i {
    font-size: 0.9rem;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: -15px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6));
    transform: translateY(-50%);
}

@keyframes clockRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes personPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    }
}

/* Time Cards */
.time-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.time-card {
    position: absolute;
    width: 90px;
    height: 70px;
    background: var(--card-bg);
    border-radius: 0.8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

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

.card-1 {
    top: 15%;
    left: 5%;
    background: linear-gradient(135deg, var(--card-bg), rgba(124, 58, 237, 0.05));
    border-color: rgba(124, 58, 237, 0.2);
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 8%;
    background: linear-gradient(135deg, var(--card-bg), rgba(59, 130, 246, 0.05));
    border-color: rgba(59, 130, 246, 0.2);
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 25%;
    left: 8%;
    background: linear-gradient(135deg, var(--card-bg), rgba(245, 158, 11, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
    animation-delay: 3s;
}

.card-4 {
    bottom: 20%;
    right: 5%;
    background: linear-gradient(135deg, var(--card-bg), rgba(16, 185, 129, 0.05));
    border-color: rgba(16, 185, 129, 0.2);
    animation-delay: 4.5s;
}

.card-content {
    text-align: center;
    padding: 0.5rem;
}

.city-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.time-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
}

.timezone-code {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.1);
    animation: circleFloat 20s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-duration: 35s;
}

/* Animation keyframes for clean time visualization */
@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes circleFloat {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive styles for clean time visualization */
@media (max-width: 768px) {
    .hero-art-container {
        padding: 1.5rem 0.5rem;
        max-width: 95%;
        height: 280px;
    }

    .timezone-art {
        height: 280px;
    }

    .clock-face {
        width: 100px;
        height: 100px;
    }

    .hour-hand {
        height: 25px;
    }

    .minute-hand {
        height: 35px;
    }

    .time-card {
        width: 80px;
        height: 60px;
    }

    .time-value {
        font-size: 0.9rem;
    }

    .city-name {
        font-size: 0.7rem;
    }

    .timezone-code {
        font-size: 0.6rem;
    }

    .bg-circle {
        opacity: 0.5;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 120px;
        height: 120px;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-art-container {
        padding: 1rem 0.25rem;
        height: 240px;
    }

    .timezone-art {
        height: 240px;
    }

    .clock-face {
        width: 80px;
        height: 80px;
    }

    .hour-hand {
        height: 20px;
    }

    .minute-hand {
        height: 28px;
    }

    .timezone-label {
        font-size: 0.8rem;
        bottom: -30px;
    }

    .time-card {
        width: 70px;
        height: 55px;
    }

    .time-value {
        font-size: 0.8rem;
    }

    .city-name {
        font-size: 0.65rem;
    }

    .timezone-code {
        font-size: 0.55rem;
    }

    .circle-1 {
        width: 120px;
        height: 120px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
    }

    .circle-3 {
        width: 70px;
        height: 70px;
    }
}

/* Hero Subtitle Visibility Fix */
.hero-subtitle {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    opacity: 0.9 !important;
}

/* Performance Optimizations for Result Container */
.result-container {
    /* Override existing transitions for better performance */
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
    /* Enable hardware acceleration */
    will-change: transform !important;
    /* Use transform3d for better performance */
    transform: translate3d(0, 0, 0) !important;
}

.result-container:hover {
    /* Use transform3d for hardware acceleration */
    transform: translate3d(0, -3px, 0) !important;
    /* Simplified box-shadow for better performance */
    box-shadow: var(--shadow-lg) !important;
}

.result-container::before {
    /* Optimize pseudo-element for performance */
    will-change: auto !important;
}

/* Optimize #result element transitions */
#result {
    /* Optimize transition - only animate specific properties */
    transition: opacity 0.3s ease, height 0.3s ease !important;
    /* Enable hardware acceleration */
    will-change: opacity, height !important;
}

/* Optimize world clock hover effects */
.world-clock {
    /* Reduce transition duration for better performance */
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    /* Enable hardware acceleration */
    will-change: transform !important;
}

.world-clock:hover {
    /* Reduce hover transform for better performance */
    transform: translate3d(0, -5px, 0) !important;
}

/* Team Member Photo Styling */
.team-member {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member-photo {
    flex-shrink: 0;
}

.author-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-social a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustments for team section */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .author-photo {
        width: 150px;
        height: 150px;
    }

    .team-member-info {
        text-align: center;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-accent));
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero h1 i {
    color: var(--tertiary-color);
    margin-right: 1rem;
    font-size: 3rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    background: var(--gradient-accent);
}

.mission-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    background: var(--secondary-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-text li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.story-timeline {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 3rem;
    bottom: -2rem;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    height: fit-content;
}

.timeline-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Detailed */
.features-detailed {
    background: var(--background);
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-detailed {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-detailed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-detailed-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
}

.feature-detailed h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-detailed p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-detailed ul {
    list-style: none;
    padding: 0;
}

.feature-detailed li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-detailed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Tech Section */
.tech-section {
    background: var(--secondary-bg);
}

.tech-content ul {
    margin-top: 2rem;
}

.tech-content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tech-content li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--tertiary-color);
}

.tech-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Team Section */
.team-section {
    background: var(--background);
}

.team-member {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    text-align: center;
}

.team-member-info h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.team-values h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Future Section */
.future-section {
    background: var(--secondary-bg);
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.roadmap-item {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.roadmap-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-status.in-development {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.roadmap-status.planned {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
}

.roadmap-status.research {
    background: rgba(245, 158, 11, 0.1);
    color: var(--tertiary-color);
}

.roadmap-item h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roadmap-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: var(--background);
    text-align: center;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

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

.contact-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-option span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-option:hover i {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero h1 i {
        font-size: 2rem;
        margin-right: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card {
        padding: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-timeline {
        position: static;
    }

    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-detailed {
        padding: 2rem;
    }

    .feature-detailed-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .roadmap {
        grid-template-columns: 1fr;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-option {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .large-text {
        font-size: 1.1rem;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-detailed-header i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .team-member {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* City Icon Enhancements - Restored missing styles */
.city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-icon i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Region-specific gradient backgrounds */
.city-icon[data-region="asia"] {
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
}

.city-icon[data-region="europe"] {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.city-icon[data-region="america"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.city-icon[data-region="africa"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.city-icon[data-region="oceania"],
.city-icon[data-region="pacific"],
.city-icon[data-region="australia"] {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.city-icon[data-region="antarctica"] {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.city-icon[data-region="atlantic"],
.city-icon[data-region="indian"] {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}