/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography - Comfortaa for headings and important elements */
h1, h2, h3, h4, h5, h6,
.hero__title,
.section__title,
.service__title,
.why-choose__title,
.nav__logo,
.footer__brand h3 {
    font-family: 'Comfortaa', cursive;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    min-height: 90px;
    position: relative;
}

.nav__brand .nav__logo {
    text-decoration: none;
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    max-width: 280px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #2c5aa0;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn--primary {
    background-color: #2c5aa0;
    color: white;
}

.btn--primary:hover {
    background-color: #1e3f73;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: #004AAD;
    color: white;
}

.btn--secondary:hover {
    background-color: #003080;
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn--outline:hover {
    background-color: #2c5aa0;
    color: white;
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service__card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service__card--popular {
    border: 3px solid #2c5aa0;
    transform: scale(1.05);
}

.service__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5aa0;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.service__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service__duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service__description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service__price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.service__features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service__features li {
    padding: 0.3rem 0;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
}

.about__content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
}

.about__text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose__card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.why-choose__card:hover {
    transform: translateY(-5px);
}

.why-choose__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-choose__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.why-choose__description {
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.review__card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #004AAD);
}

.review__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review__stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.review__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.review__text::before {
    content: '"';
    font-size: 3rem;
    color: #2c5aa0;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: 'Comfortaa', cursive;
    opacity: 0.3;
}

.review__author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review__author strong {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Comfortaa', cursive;
}

.review__author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact__info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact__item {
    text-align: center;
}

.contact__item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact__item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.contact__item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__brand h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.footer__brand p {
    color: #ccc;
}

.footer__contact p {
    color: #ccc;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Mobile Menu Styles */
.nav__menu--active {
    display: flex !important;
}

.nav__toggle--active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav__toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 15px 15px;
        z-index: 1000;
    }
    
    .nav__list {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav__item {
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav__item:last-child {
        border-bottom: none;
    }
    
    .nav__link {
        display: block;
        padding: 1rem 2rem;
        color: #333;
        font-weight: 500;
    }
    
    .nav__link:hover {
        background-color: #f8f9fa;
        color: #2c5aa0;
    }
    
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: 110px 0 60px;
        min-height: auto;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service__card--popular {
        transform: none;
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service__card {
        padding: 1.5rem;
    }
    
    .why-choose__card {
        padding: 1.5rem;
    }
}

