/* Testimonials Section */
.testimonials {
    background: #1e1a2e;
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #e74c3c;
}

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

.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: span 1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 20px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cookie-content p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons .btn-primary {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons .btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.cookie-buttons .btn-secondary:hover {
    background: #e74c3c;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
}

.brand-icon {
    font-size: 24px;
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e1a2e 0%, #2d1b69 30%, #6441a5 70%, #904e95 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

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

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e74c3c;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #4fc3f7;
    line-height: 1.3;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
}

.cta-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
}

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

/* About Section */
.about {
    background: #1e1a2e;
    padding: 100px 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #e74c3c;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
}

/* Philosophy Section */
.philosophy {
    background: #1e1a2e;
    padding: 60px 0 100px;
}

.philosophy-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #4fc3f7;
}

.philosophy-box p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1e1a2e 0%, #2d1b69 30%, #6441a5 70%, #904e95 100%);
    padding: 100px 0;
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #e74c3c;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 20px;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4fc3f7;
    line-height: 1.2;
}

.service-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
    flex-grow: 1;
}

.services-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: #1e1a2e;
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #e74c3c;
}

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

.testimonials-grid .testimonial-card:nth-child(4) {
    grid-column: 1 / 3;
}

.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: 3;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 32px;
    color: #4fc3f7;
    margin-bottom: 15px;
}

.stars {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4fc3f7;
}

.testimonial-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e1a2e 0%, #2d1b69 30%, #6441a5 70%, #904e95 100%);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e74c3c;
}

.contact-text h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #4fc3f7;
    font-style: italic;
}

.contact-text p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info p{
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 20px;
    color: #e74c3c;
    min-width: 25px;
}

.contact-item p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 92%;
    padding: 18px;
    margin-bottom: 20px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.3);
    background: rgba(255, 255, 255, 1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Footer */
.footer {
    background: #0f0f1a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e74c3c;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

.footer-copyright {
    color: #888888;
    font-size: 12px;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -110%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 120px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 20px;
    }
    
    .about-text h2,
    .philosophy h2,
    .services h2,
    .testimonials h2,
    .contact-text h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn-primary,
    .cookie-buttons .btn-secondary {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .hero-text p,
    .about-text p,
    .contact-text p {
        font-size: 14px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .nav-brand {
        font-size: 20px;
    }
    
    .brand-icon {
        font-size: 24px;
    }
}

/* Smooth Animations */
.service-card,
.testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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


.footer {
    background: #0f0f1a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.footer-navigation {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-navigation a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: #e74c3c;
}

.footer-legal {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e74c3c;
}

.footer-address {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

.footer-address strong {
    color: #ffffff;
}

.footer-copyright {
    color: #888888;
    font-size: 12px;
    font-weight: 300;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-navigation,
    .footer-legal {
        gap: 20px;
    }
    
    .footer-navigation a,
    .footer-legal a {
        font-size: 14px;
    }
}