/* Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #f97316;
    --light: #f9fafb;
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --error: #ef4444;
}

/* Basic Reset & Font */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { 
    background-color: var(--light); 
    color: var(--dark); 
    line-height: 1.6; 
    overflow-x: hidden; /* For animations */
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Enhanced Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out forwards;
}

.activity-content.updating {
    opacity: 0;
}

/* Enhanced Buttons */
.btn { 
    display: inline-block; 
    background-color: var(--primary); 
    color: white; 
    padding: 12px 24px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: none; 
    cursor: pointer; 
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover { 
    background-color: var(--primary-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2); 
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active { 
    transform: translateY(-1px) scale(0.98); 
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.15); 
}

.btn:disabled { 
    background-color: var(--gray); 
    color: #e5e7eb; 
    cursor: not-allowed; 
    transform: none; 
    box-shadow: none; 
}

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

.btn-secondary:hover { 
    background-color: #ea580c; 
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2); 
}

.btn-small { 
    padding: 6px 12px; 
    font-size: 14px; 
}

/* Enhanced Header */
header { 
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
    position: sticky; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 0; 
    height: 80px; 
}

.logo { 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--primary); 
    text-decoration: none; 
    display: flex; 
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo i { 
    margin-right: 8px; 
    font-size: 28px; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links li { 
    margin-left: 32px; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 500; 
    transition: all 0.3s ease; 
    position: relative;
}

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

.nav-links a:hover { 
    color: var(--primary); 
}

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

.mobile-menu { 
    display: none; 
    font-size: 24px; 
    cursor: pointer; 
    color: var(--dark); 
}

/* Enhanced Hero Section */
.hero { 
    padding: 100px 0; 
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.08) 0%, 
        rgba(249, 115, 22, 0.08) 100%
    ); 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413L30 11.8l7.07 7.414v-.002zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM56.87 59.414L58.284 58 30 29.716 1.716 58l1.414 1.414L30 32.544l26.87 26.87z' fill='%236366f1' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.hero h1 { 
    font-size: 48px; 
    margin-bottom: 20px; 
    color: var(--dark); 
}

.hero p { 
    font-size: 20px; 
    color: var(--gray); 
    max-width: 600px; 
    margin: 0 auto 40px; 
}

/* Enhanced Dashboard Section */
.dashboard-section { 
    padding: 40px 0;
    position: relative;
}

.dashboard { 
    background-color: white; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); 
    padding: 40px; 
    position: relative; 
    z-index: 10; 
    max-width: 800px; 
    margin: 0 auto; 
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dashboard-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 20px; 
    flex-wrap: wrap; 
    gap: 15px; 
}

.location-section { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    flex-wrap: wrap; 
}

.location { 
    display: flex; 
    align-items: center; 
    font-weight: 500; 
}

.location i { 
    margin-right: 8px; 
    color: var(--primary); 
    animation: pulseScale 2s infinite;
}

.city-change-form { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
}

.city-change-form input[type="text"] { 
    padding: 8px 12px; 
    border: 1px solid #d1d5db; 
    border-radius: 6px; 
    font-size: 14px; 
    min-width: 150px;
    transition: all 0.3s ease;
}

.city-change-form input[type="text"]:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2); 
}

#city-error { 
    color: var(--error); 
    font-size: 13px; 
    margin-left: 5px; 
    display: none; 
}

.weather { 
    display: flex; 
    align-items: center; 
    background-color: var(--light-gray); 
    padding: 10px 20px; 
    border-radius: 50px; 
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.weather-icon { 
    margin-right: 12px; 
    font-size: 24px; 
    min-width: 25px; 
    text-align: center; 
    transition: transform 0.3s ease; 
}

.weather-icon.loading { 
    animation: spin 1s linear infinite; 
}

@keyframes spin { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

/* Weather Icons Colors */
.sunny { color: #f59e0b; } 
.rainy { color: #3b82f6; } 
.cloudy { color: #9ca3af; } 
.snowy { color: #60a5fa; } 
.stormy { color: #8b5cf6; } 
.error-icon { color: var(--error); }

.weather-temp { 
    font-weight: 600; 
    margin-right: 8px; 
}

.weather-condition { 
    color: var(--gray); 
}

/* Enhanced Activity Card */
.activity-card { 
    background-color: var(--light-gray); 
    padding: 30px; 
    border-radius: 12px; 
    margin-bottom: 30px; 
    text-align: center; 
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.activity-content { 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-content.loading { 
    opacity: 0.5; 
    transform: scale(0.98); 
}

.activity-emoji { 
    font-size: 48px; 
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-emoji {
    transform: scale(1.2) rotate(5deg);
}

.activity-title { 
    font-size: 24px; 
    font-weight: 600; 
    margin-bottom: 12px; 
    color: var(--dark); 
}

.activity-description { 
    color: var(--gray); 
    margin-bottom: 20px; 
    min-height: 40px; 
}

.activity-type { 
    display: inline-block; 
    padding: 6px 12px; 
    border-radius: 50px; 
    font-size: 14px; 
    font-weight: 500; 
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.activity-type:hover {
    transform: scale(1.1);
}

.indoor { 
    background-color: #e0f2fe; 
    color: #0369a1; 
} 

.outdoor { 
    background-color: #dcfce7; 
    color: #15803d; 
} 

.both { 
    background-color: #fef3c7; 
    color: #92400e; 
} 

.error { 
    background-color: #fee2e2; 
    color: #b91c1c; 
}

.dashboard-actions { 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
    flex-wrap: wrap; 
    margin-top: 10px;
}

.dashboard-actions .btn i { 
    margin-right: 8px; 
}

/* Enhanced Features Section */
.features { 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.05) 0%, 
        rgba(255, 255, 255, 0) 100%
    );
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h-2L40 26v-2zm0 4L68 0h-4L40 30v-2zm0 4L72 0h-4L40 34v-2zm0 4L76 0h-4L40 38v-2zm0 4L80 0h-4L40 42v-2zm0 4L84 0h-4L40 46v-2zm0 4L88 0h-4L40 50v-2zm0 4l48-48V0h-2L40 54v-2zm0 4l48-48V4L40 58v-2zm0 4l48-48V8L40 62v-2zm0 4l48-48v4L40 66v-2zm0 4l48-48v4L40 70v-2zm0 4l48-48v4L40 74v-2zm0 4l48-48v4L40 78v-2zm0 4l48-48v4L40 82v-2zm0 4l48-48v4L40 86v-2z' fill='%23f97316' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.section-header h2 { 
    font-size: 36px; 
    margin-bottom: 16px; 
    color: var(--dark); 
}

.section-header p { 
    font-size: 18px; 
    color: var(--gray); 
    max-width: 600px; 
    margin: 0 auto; 
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.feature-card { 
    background-color: white; 
    border-radius: 12px; 
    padding: 30px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
}

.feature-icon { 
    background-color: rgba(99, 102, 241, 0.1); 
    color: var(--primary); 
    width: 60px; 
    height: 60px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--primary);
    color: white;
}

.feature-card h3 { 
    font-size: 20px; 
    margin-bottom: 12px; 
    color: var(--dark); 
}

.feature-card p { 
    color: var(--gray); 
}

/* Enhanced FAQ Section */
.faq { 
    padding: 100px 0; 
    background-color: var(--light-gray);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236366f1' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.faq-grid { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item { 
    margin-bottom: 15px; 
    background-color: white; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover { 
    background-color: rgba(99, 102, 241, 0.05); 
}

.faq-question i { 
    font-size: 18px; 
    transition: all 0.3s ease; 
    color: var(--primary); 
}

.faq-answer { 
    padding: 0 30px; 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    color: var(--gray); 
    font-size: 15px; 
}

.faq-answer p { 
    margin-bottom: 1em; 
} 

.faq-answer p:last-child { 
    margin-bottom: 0; 
}

.faq-item.active { 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question { 
    background-color: rgba(99, 102, 241, 0.05); 
}

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

.faq-item.active .faq-answer { 
    padding: 0 30px 20px; 
    max-height: 300px; 
}

/* Enhanced Contact Section */
.contact { 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f97316' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 0h4v4H0V0zm4 4h4v4H4V4zm4-4h4v4H8V0zm4 4h4v4h-4V4zm4-4h4v4h-4V0zm4 4h4v4h-4V4zm4-4h4v4h-4V0zm4 4h4v4h-4V4zm4-4h4v4h-4V0zm4 4h4v4h-4V4zM0 8h4v4H0V8zm4 4h4v4H4v-4zm4-4h4v4H8V8zm4 4h4v4h-4v-4zm4-4h4v4h-4V8zm4 4h4v4h-4v-4zm4-4h4v4h-4V8zm4 4h4v4h-4v-4zm4-4h4v4h-4V8zm4 4h4v4h-4v-4zm-36 0h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zM0 16h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm-36 0h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zM0 24h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm-36 0h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zM0 32h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm-36 0h4v4H0v-4zm4 4h4v4H4v-4zm4-4h4v4H8v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4zm4-4h4v4h-4v-4zm4 4h4v4h-4v-4z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.contact-grid { 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center; 
}

.contact-info { 
    padding: 20px; 
}

.contact-info p { 
    color: var(--gray); 
    margin-bottom: 30px; 
}

.contact-item { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 16px; 
    color: var(--dark);
    transition: transform 0.3s ease;
}

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

.contact-item i { 
    width: 40px; 
    height: 40px; 
    background-color: rgba(99, 102, 241, 0.1); 
    color: var(--primary); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
    margin-right: 16px; 
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background-color: var(--primary);
    color: white;
    transform: rotate(360deg);
}

/* Enhanced Footer */
footer { 
    background-color: var(--dark); 
    color: white; 
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 0v48H0V0h48zM24 24c0-6.627-5.373-12-12-12S0 17.373 0 24s5.373 12 12 12 12-5.373 12-12zm12 12c6.627 0 12-5.373 12-12s-5.373-12-12-12-12 5.373-12 12 5.373 12 12 12z' fill='%236366f1' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.2;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 40px; 
    margin-bottom: 40px; 
}

.footer-col h3 { 
    font-size: 18px; 
    margin-bottom: 20px; 
    color: white;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 100%;
}

.footer-links { 
    list-style: none; 
}

.footer-links li { 
    margin-bottom: 12px; 
}

.footer-links a { 
    color: var(--gray); 
    text-decoration: none; 
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a i { 
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.footer-links a:hover { 
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: scale(1.2);
}

.footer-bottom { 
    text-align: center; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: var(--gray); 
    font-size: 14px; 
}

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background-color: white; 
        flex-direction: column; 
        padding: 20px 0; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        animation: slideInRight 0.3s ease-out forwards;
    }
    
    .nav-links.active { 
        display: flex; 
    }
    
    .nav-links li { 
        margin-left: 0; 
        text-align: center; 
        padding: 10px 0; 
    }
    
    .mobile-menu { 
        display: block; 
    }
    
    .hero h1 { 
        font-size: 36px; 
    } 
    
    .hero p { 
        font-size: 18px; 
    }
    
    .dashboard-section { 
        padding: 20px 0; 
    }
    
    .dashboard { 
        padding: 25px 15px; 
    }
    
    .dashboard-header { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 15px; 
    }
    
    .location-section { 
        justify-content: center; 
        flex-direction: column; 
        gap: 12px; 
    }
    
    .city-change-form { 
        width: 100%; 
        justify-content: center; 
    }
    
    .city-change-form input[type="text"] { 
        max-width: 220px; 
    }
    
    .weather { 
        width: auto; 
        justify-content: center; 
        margin: 10px auto 0; 
    }

    .dashboard-actions { 
        flex-direction: column; 
        width: 100%; 
        align-items: center; 
    }
    
    .dashboard-actions .btn { 
        width: 90%; 
        max-width: 300px; 
        text-align: center; 
        margin-bottom: 10px; 
    }
    
    .dashboard-actions .btn:last-child { 
        margin-bottom: 0; 
    }
    
    .features-grid { 
        grid-template-columns: 1fr; 
    }
    
    .faq-grid { 
        padding: 0 10px; 
    }
    
    .faq-question { 
        padding: 15px 20px; 
    } 
    
    .faq-answer { 
        padding: 0 20px; 
    }
    
    .faq-item.active .faq-answer { 
        padding: 0 20px 15px; 
    }
    
    .contact-grid { 
        padding: 0 10px; 
    }
    
    .contact-item { 
        justify-content: flex-start; 
        text-align: left; 
    }
}
