* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF8C00;
    --primary-dark: #FF7F00;
    --primary-light: #FFA500;
    --secondary-color: #FF6B35;
    --accent-color: #DC143C;
    --pink: #EC4899;
    --teal: #14B8A6;
    --blue: #3B82F6;
    --orange: #FF8C00;
    --saffron: #FF8C00;
    --red: #DC143C;
    --dark-bg: #1a1a2e;
    --light-bg: #fff8f0;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 5px 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 50%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.2;
    display: inline-block;
}

.logo-text::before {
    content: '✦';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #FF8C00;
    opacity: 0.7;
    animation: sparkle 2.5s ease-in-out infinite;
}

.logo-text::after {
    content: '✦';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #FF8C00;
    opacity: 0.7;
    animation: sparkle 2.5s ease-in-out infinite 1.2s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.5; 
        transform: translateY(-50%) scale(0.9);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.1);
    }
}

.logo:hover .logo-text {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.logo:hover .logo-text::before,
.logo:hover .logo-text::after {
    opacity: 1;
    animation-duration: 1.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
        letter-spacing: 0.8px;
    }
    
    .logo-text::before,
    .logo-text::after {
        font-size: 10px;
        left: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .logo-text::before,
    .logo-text::after {
        font-size: 9px;
        left: -12px;
        right: -12px;
    }
}

    .logo span {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 0.5px;
    }
    
    /* Logo responsive styles */
    @media (max-width: 768px) {
        .logo {
            font-size: 20px;
        }
        
        .logo-image {
            height: 45px;
            max-width: 160px;
        }
    }

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 10px;
}

.login-btn {
    background: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background: var(--primary-dark);
}

.nav-bottom {
    display: flex;
    gap: 30px;
    padding: 12px 0;
    align-items: center;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    margin-top: 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.astrologer-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Pulsing Circle Animation */
.astrologer-placeholder::before,
.astrologer-placeholder::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.astrologer-placeholder::before {
    width: 300px;
    height: 300px;
    animation: pulseCircle 2s ease-in-out infinite;
}

.astrologer-placeholder::after {
    width: 300px;
    height: 300px;
    animation: pulseCircle 2s ease-in-out infinite 0.5s;
}

/* Additional pulsing circles */
.banner-image::before,
.banner-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.banner-image::before {
    width: 300px;
    height: 300px;
    animation: pulseCircle 2s ease-in-out infinite 1s;
}

.banner-image::after {
    width: 300px;
    height: 300px;
    animation: pulseCircle 2s ease-in-out infinite 1.5s;
}

@keyframes pulseCircle {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.astrologer-placeholder i {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 3;
}

.banner-text {
    flex: 1;
    color: var(--dark-bg);
}

.banner-tagline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.chat-now-btn {
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Banner Carousel Styles */
.banner-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
}

.banner-slide.active {
    display: block;
    opacity: 1;
}

.banner-slide[data-theme="love"] {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.banner-slide[data-theme="marriage"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.banner-slide[data-theme="career"] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.banner-slide[data-theme="health"] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.banner-slide[data-theme="education"] {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.banner-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-indicators .indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Banner Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-nav-prev {
    left: 20px;
}

.banner-nav-next {
    right: 20px;
}

/* Responsive styles for banner carousel */
@media (max-width: 768px) {
    .banner-slide {
        padding: 40px 0;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .banner-nav-prev {
        left: 10px;
    }
    
    .banner-nav-next {
        right: 10px;
    }
    
    .banner-indicators {
        bottom: 10px;
    }
    
    .banner-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    .banner-indicators .indicator.active {
        width: 25px;
    }
}

/* Service Cards */
.services {
    padding: 60px 0;
    background: var(--white);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.service-icon.pink {
    background: var(--pink);
}

.service-icon.teal {
    background: var(--teal);
}

.service-icon.blue {
    background: var(--blue);
}

.service-icon.orange {
    background: var(--orange);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}

.service-card.featured {
    border: 2px solid var(--orange);
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.4);
}

/* Our Astrologers Section */
.astrologers-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 70%, var(--light-bg) 70%);
}

.section-title-large {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.astrologers-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.astrologers-container {
    flex: 1;
    overflow: hidden;
}

.astrologers-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.astrologer-card {
    min-width: 250px;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.astrologer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.astrologer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.astrologer-image i {
    font-size: 80px;
    color: var(--text-light);
}

.astrologer-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.astrologer-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* News Section */
.news-section {
    padding: 60px 0;
    background: var(--primary-color);
}

.news-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-container {
    flex: 1;
    overflow: hidden;
}

.news-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.news-card {
    min-width: 350px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

.news-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-dark);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.news-source {
    font-weight: 600;
    text-transform: uppercase;
}

/* Complimentary Services Section */
.complimentary-services {
    padding: 60px 0;
    background: var(--light-bg);
}

.complimentary-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.complimentary-container {
    flex: 1;
    overflow: hidden;
}

.complimentary-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.complimentary-card {
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.complimentary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.complimentary-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--white);
}

.complimentary-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.complimentary-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Carousel Buttons */
.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--white);
    transition: background 0.3s, transform 0.3s, opacity 0.3s;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn.prev-btn {
    margin-right: 10px;
}

.carousel-btn.next-btn {
    margin-left: 10px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .main-nav.mobile-active,
    .nav-bottom.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 20px;
        z-index: 1002;
    }

    .main-nav:not(.mobile-active),
    .nav-bottom:not(.mobile-active) {
        display: none;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Responsive Carousel Styles */
@media (max-width: 768px) {
    .astrologers-track,
    .news-track,
    .complimentary-track {
        gap: 20px;
    }
    
    .astrologer-card,
    .news-card,
    .complimentary-card {
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-top {
        flex-direction: row;
        gap: 15px;
        position: relative;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-bottom {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-title {
        font-size: 32px;
    }

    .astrologer-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .astrologer-placeholder::before,
    .astrologer-placeholder::after {
        width: 200px;
        height: 200px;
    }
    
    .banner-image::before,
    .banner-image::after {
        width: 200px;
        height: 200px;
    }

    .astrologer-placeholder i {
        font-size: 100px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 40px 0;
    }

    .banner-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 140px;
    }
    
    .login-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-top {
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-bottom {
        order: 4;
        width: 100%;
    }
    
    .banner-tagline {
        font-size: 16px;
    }
    
    .chat-now-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .astrologers-carousel,
    .news-carousel,
    .complimentary-carousel {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-btn {
        align-self: center;
    }
    
    .astrologer-card,
    .news-card,
    .complimentary-card {
        min-width: 100%;
    }
    
    .news-image {
        height: 150px;
    }
    
    .news-content h3 {
        font-size: 16px;
    }
    
    .complimentary-card p {
        font-size: 13px;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .nav-link,
    .tab,
    .tab-button,
    .zodiac-option,
    .horoscope-tab {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card,
    .astrologer-card,
    .news-card,
    .complimentary-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    button,
    .action-btn,
    .submit-btn,
    .follow-btn {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    input,
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .banner {
        padding: 30px 0;
    }
    
    .banner-content {
        flex-direction: row;
        gap: 30px;
    }
    
    .astrologer-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .astrologer-placeholder::before,
    .astrologer-placeholder::after {
        width: 150px;
        height: 150px;
    }
    
    .banner-image::before,
    .banner-image::after {
        width: 150px;
        height: 150px;
    }
    
    .astrologer-placeholder i {
        font-size: 80px;
    }
}

