@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #FF4500; /* OrangeRed */
    --secondary-color: #FF8C00; /* DarkOrange */
    --accent-color: #FFD700; /* Gold */
    --text-color: #333;
    --bg-color: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    text-align: center;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.lang-icon {
    font-size: 1.1rem;
}

.language-btn-bottom {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    backdrop-filter: blur(10px);
}

.language-btn-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
    border-color: var(--accent-color);
}

nav .logo {
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.hero {
    padding: 2rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 0.3rem !important;
    color: white !important;
}

/* More specific rule to ensure it works */
header .hero h2 {
    font-size: 2.2rem !important;
    margin-bottom: 0.3rem !important;
    color: white !important;
    text-align: center !important;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: var(--primary-color);
}

main {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

section {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.services {
    position: relative;
}

.services-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-card {
    flex: 0 0 23%;
    margin: 0 1%;
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.3rem;
}

/* Planets Section Styles */
.planets-section {
    margin: 4rem 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.planets-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.planets-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.planets-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 2rem;
}

.planets-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.planet-card {
    min-width: 200px;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.planet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.planet-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.planet-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.planet-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.planet-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.planet-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.planets-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.planets-carousel-button:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.planets-carousel-button.prev {
    left: 10px;
}

.planets-carousel-button.next {
    right: 10px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carousel-button.prev { left: -10px; }
.carousel-button.next { right: -10px; }
.carousel-button:hover { background-color: var(--primary-color); color: white; }

.about {
    background-color: #fff8f0;
    padding: 4rem 2rem;
    border-radius: 15px;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.consultation {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 50%, #fff8f0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.consultation::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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.consultation h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.consultation-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.consultation iframe {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
}

.testimonials {
    background-color: var(--bg-color);
    padding: 2rem 0;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-container + .testimonial-container {
    margin-top: 2.5rem;
}

.testimonial-card {
    flex-basis: 30%;
    background-color: #fff;
    border: 1px solid #eee;
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 10px;
    line-height: 1.6;
    max-height: 280px;
}

.testimonial-card p::-webkit-scrollbar {
    width: 6px;
}

.testimonial-card p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.testimonial-card p::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.testimonial-card p::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.testimonial-card h4 {
    color: var(--primary-color);
    margin-top: 1rem;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
}

footer {
    background: var(--text-color);
    color: white;
    text-align: center;
    padding: 2rem;
}

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

.website-credits {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
    text-align: center;
}

.website-credits a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-credits a:hover {
    color: #999;
    text-decoration: underline;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 1rem 0;
}
.hero-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(255, 69, 0, 0.15);
    border: 4px solid var(--accent-color);
}

.whatsapp-float {
    position: fixed;
    right: 17px;
    bottom: 17px;
    z-index: 9999;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.whatsapp-float svg {
    width: 64px;
    height: 64px;
    display: block;
}

.whatsapp-label {
    position: fixed;
    right: 32px;
    bottom: 16px;
    z-index: 9999;
    background: #fff;
    color: #25D366;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 6px 18px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-align: center;
    pointer-events: none;
    transition: background 0.2s, color 0.2s;
}
@media (max-width: 600px) {
    .whatsapp-label {
        right: 16px;
        font-size: 1rem;
        padding: 5px 12px;
    }
    
    /* Reduce WhatsApp icon size on mobile */
    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }
    
    .whatsapp-float svg {
        width: 48px;
        height: 48px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-text:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

/* Style the phone icon to be yellow */
.logo-text {
    color: #fff;
}

/* Make the phone emoji yellow */
.logo-text {
    color: #fff;
}

/* Target the phone emoji specifically using unicode */
.logo-text {
    color: #fff;
}

/* Style the phone icon to be yellow */
.phone-icon {
    color: var(--accent-color);
    font-size: 1.1em;
    margin: 0 0.2rem;
}

.social-float-group {
    position: fixed;
    right: 32px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.social-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.social-float svg {
    width: 32px;
    height: 32px;
}
.social-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.social-float.facebook:hover { background: #1877F3; }
.social-float.instagram:hover { background: #E4405F; }
.social-float.google:hover { background: #4285F4; }
@media (max-width: 600px) {
    .social-float-group {
        right: 12px;
        bottom: 70px;
        gap: 8px;
    }
    .social-float {
        width: 36px;
        height: 36px;
    }
    .social-float svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        flex-basis: 100%;
        height: auto;
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        max-height: none;
        overflow-y: visible;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Make stats section responsive on mobile */
    .stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .testimonial-card {
        flex-basis: 45%;
        height: auto;
        min-height: 350px;
        padding: 1.8rem;
    }
    
    .testimonial-card p {
        max-height: none;
        overflow-y: visible;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Make stats section responsive on tablets */
    .stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-item {
        flex: 1 1 45%;
        min-width: 200px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
}

/* Responsive design for language button */
@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .lang-icon {
        font-size: 1rem;
    }
    
    /* Make logo-text responsive on tablets */
    .logo-text {
        font-size: 1.3rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        padding: 0.3rem;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .language-btn {
        align-self: center;
    }
    
    /* Keep the urgent help line on one line on mobile */
    .logo-text {
        font-size: 0.95rem;
        white-space: nowrap;
        text-align: center;
        line-height: 1.3;
        padding: 0.25rem 0;
        letter-spacing: 0.25px;
    }
    
    .consultation {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .consultation h2 {
        font-size: 2rem;
    }
    
    .consultation-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .consultation iframe {
        width: 100%;
        height: 600px;
    }
    
    .language-btn-bottom {
        bottom: 15px;
        left: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Additional mobile improvements for testimonials */
    .testimonials {
        padding: 1rem 0;
    }
    
    .testimonial-container + .testimonial-container {
        margin-top: 1.5rem;
    }
    
    .testimonial-card h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .testimonial-card span {
        font-size: 0.85rem;
    }
    
    /* Hero title on mobile - allows line breaks */
    .hero h1 {
        font-size: 2.2rem;
        font-weight: 700;
        white-space: normal;
        line-height: 1.1;
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    /* Make tagline smaller than the main title */
    .hero h2 {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    /* Additional improvements for very small screens */
    @media (max-width: 480px) {
        .whatsapp-float {
            right: 8px;
            bottom: 8px;
        }
        
        .whatsapp-float svg {
            width: 44px;
            height: 44px;
        }
        
        .whatsapp-label {
            right: 12px;
            font-size: 0.9rem;
            padding: 4px 10px;
        }
        
        .social-float-group {
            right: 8px;
            bottom: 60px;
            gap: 6px;
        }
        
        .social-float {
            width: 32px;
            height: 32px;
        }
        
        .social-float svg {
            width: 18px;
            height: 18px;
        }
        
        /* Hero title on very small screens - allows line breaks */
        .hero h1 {
            font-size: 1.8rem;
            font-weight: 700;
            white-space: normal;
            text-align: center;
        }
        
        /* Smaller tagline on very small screens */
        .hero h2 {
            font-size: 1rem;
            font-weight: 700;
        }
    }
} 

/* Urgent Help Button Styling */
.urgent-help-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: pulse-glow 2s infinite;
}

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

.urgent-help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.6);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

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

.urgent-help-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.urgent-help-button .phone-icon {
    color: #ff0000;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    animation: phone-bounce 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
}

.urgent-help-button .phone-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.urgent-help-button:hover .phone-icon svg {
    transform: rotate(15deg) scale(1.1);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(238, 90, 36, 0.7), 0 0 30px rgba(238, 90, 36, 0.3);
    }
}

@keyframes phone-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-4px) rotate(8deg) scale(1.1);
    }
    40% {
        transform: translateY(-2px) rotate(-6deg) scale(0.95);
    }
    60% {
        transform: translateY(-6px) rotate(4deg) scale(1.15);
    }
    80% {
        transform: translateY(-1px) rotate(-3deg) scale(0.9);
    }
}

/* Responsive design for urgent help button */
@media (max-width: 768px) {
    .urgent-help-button {
        padding: 10px 16px;
        font-size: 1rem;
        border-radius: 40px;
    }
}

@media (max-width: 480px) {
    .urgent-help-button {
        padding: 8px 14px;
        font-size: 0.9rem;
        border-radius: 35px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .urgent-help-button .phone-icon {
        font-size: 1.1em;
    }
} 