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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-link:hover {
    color: #FFD700;
}

.btn-nav {
    background: #FFD700;
    color: #000;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: #000;
    color: #fff;
}

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

.hero-text {
    text-align: left;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: #FFD700;
    margin: 1rem 0;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.btn-primary {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
}

.number-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
}

.number-plus {
    font-size: 2rem;
    color: #FFD700;
    margin-left: 5px;
}

.number-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.about-image-wrapper {
    position: relative;
    padding: 40px;
}

.about-image {
    position: relative;
}

.about-image > img:first-child {
    width: 100%;
    border-radius: 20px;
}

.about-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    animation: rotate 20s linear infinite;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    text-align: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* CIRCULAR BADGES - Positioned around image */
.about-badge {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

.badge-top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
}

.badge-right {
    top: 40%;
    right: -50px;
    transform: translateY(-50%) rotate(5deg);
}

.badge-bottom {
    bottom: 20px;
    left: -30px;
    transform: rotate(-8deg);
}

/* Color schemes */
.badge-black {
    background: #000;
    color: #fff;
    border-color: #000;
}

.badge-yellow {
    background: #FFD700;
    color: #000;
    border-color: #FFC700;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rotation, 0deg)); }
}

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

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

.services-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 15px;
}

.service-card-detailed .service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card-detailed h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-card-detailed h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #000;
    font-weight: 600;
}

.service-card-detailed p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card-detailed ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.service-card-detailed ul li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-card-detailed ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
}

.service-features i {
    color: #FFD700;
    margin-right: 10px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 10px 24px;
    border: 2px solid #FFD700;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.satisfaction-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.emoji {
    font-size: 48px;
}

.percentage {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 3rem auto;
    position: relative;
}

.testimonial-card {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card.active {
    display: grid;
}

.testimonial-image img {
    width: 100%;
    border-radius: 15px;
}

.testimonial-content {
    padding: 1rem;
}

.star-rating {
    margin-bottom: 1.5rem;
}

.star-rating i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #FFD700;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #FFC700;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #FFD700;
    width: 30px;
    border-radius: 6px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #FFD700;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #000;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FFC700;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation - Keep horizontal */
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Hero Section - Fix text display */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin: 0.5rem 0;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    /* Numbers Grid - Keep horizontal in one row */
    .numbers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
        padding: 0 5px;
    }
    
    .number-circle {
        width: 70px;
        height: 70px;
    }
    
    .number {
        font-size: 1.3rem;
    }
    
    .number-plus {
        font-size: 0.9rem;
    }
    
    .number-label {
        font-size: 0.65rem;
        padding: 0 2px;
    }
    
    /* About Section - Proper mobile scaling */
    .about-section {
        padding: 30px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image-wrapper {
        padding: 20px 10px;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image > img:first-child {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .about-decoration {
        width: 60px;
        height: 60px;
        top: -15px;
        right: 5px;
    }
    
    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .about-text {
        text-align: left;
        padding: 0 10px;
    }
    
    /* Circular badges - repositioned for mobile */
    .about-badge {
        width: 90px;
        height: 90px;
        font-size: 8px;
        padding: 8px;
    }
    
    .badge-top {
        top: -10px;
        left: 10%;
    }
    
    .badge-right {
        top: 30%;
        right: -20px;
    }
    
    .badge-bottom {
        bottom: 10px;
        left: 5%;
    }
    
    .services-grid-two {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    /* Footer - Center social icons */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
