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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* Header Styles */
header {
    background: white;
    border-bottom: 1px solid #fecaca;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header img {
    position: relative;
    top: 20px;
    transform: scale(0.8);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #dc2626;
}

.logo-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
    border-bottom: 2px solid #dc2626;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #b91c1c, #991b1b, #7f1d1d);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #991b1b, #7f1d1d, #6b1f1f);
}

.sacred-geometry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fbbf24;
    opacity: 0.6;
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    max-width: 600px;
    color: #fecaca;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
    left: 16px;
}

.slider-nav.next {
    right: 16px;
}

.slider-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.indicator.active {
    background: white;
    transform: scale(1.25);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.btn-secondary {
    background: white;
    color: #dc2626;
    border-color: white;
}

.btn-secondary:hover {
    background: #f9fafb;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

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

.full-width {
    width: 100%;
}

/* Section Styles */
.section {
    padding: 64px 0;
}

.bg-light {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    transition: all 0.3s;
    border: 1px solid #fecaca;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.service-card.featured {
    border: 2px solid #dc2626;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.benefits-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: #1f2937;
}

.benefits-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #374151;
}

.stats-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
    border: 1px solid #fecaca;
}

.stats-card h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 64px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #fecaca;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    border-top: 1px solid #fecaca;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-info p {
    color: #6b7280;
    line-height: 1.6;
}

.footer-services h3,
.footer-contact h3 {
    color: #1f2937;
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-services li {
    color: #6b7280;
    margin-bottom: 8px;
}

.contact-item {
    color: #6b7280;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #fecaca;
    padding-top: 24px;
    text-align: center;
    color: #6b7280;
}

/* Hero Simple */
.hero-simple {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.hero-simple h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: #1f2937;
}

.hero-simple p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
    color: #1f2937;
}

.mission-section {
    margin-bottom: 32px;
}

.mission-section h3 {
    color: #dc2626;
    font-size: 20px;
    margin-bottom: 12px;
}

.mission-section p {
    color: #374151;
    line-height: 1.7;
}

.values-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
    border: 1px solid #fecaca;
}

.values-card h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.value-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.achievement-card {
    text-align: center;
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    transition: transform 0.3s;
}

.achievement-card:hover {
    transform: translateY(-4px);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.achievement-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1f2937;
}

.achievement-card p {
    color: #6b7280;
    font-size: 14px;
}

/* Philosophy Section */
.philosophy-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
    color: #1f2937;
}

.philosophy-content {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid #fecaca;
}

.philosophy-content p {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.philosophy-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-choose-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.why-choose-item h3 {
    color: #dc2626;
    font-size: 18px;
    margin-bottom: 12px;
}

.why-choose-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.category-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1f2937;
    text-align: center;
}

.category-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-tag {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.category-tag.red {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.category-tag.blue {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.category-tag.green {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.benefit-card h3 {
    color: #dc2626;
    font-size: 20px;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.metric-card {
    text-align: center;
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.metric-label {
    color: #6b7280;
    font-size: 14px;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.form-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
    border: 1px solid #fecaca;
}

.form-card h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-card p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-info-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: #1f2937;
}

.contact-info-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-info-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-details p {
    color: #374151;
    font-weight: 500;
    margin-bottom: 4px;
        font-size: 13px;
}

.contact-details span {
    color: #6b7280;
    font-size: 14px;
}

.why-choose-card {
    background: linear-gradient(135deg, #fef2f2, #ffffff);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #fecaca;
}

.why-choose-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-choose-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    background: #fef2f2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.why-choose-content p {
    font-size: 12px;
    color: #6b7280;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.faq-item h3 {
    color: #dc2626;
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.btn-icon {
    margin-left: 8px;
}

.footer-services a {
    color: inherit;
    text-decoration: none;
}

.footer-services a:hover {
    color: #dc2626;
}

/* Responsive Design */
@media screen and (max-width: 1135px){
    .contact-details p{
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px){
   header img {
        width: 100%;
        top: 15px;
    }
    .nav-desktop{
        gap: 20px;
    }
    .nav-link{
        font-size: 14px;
        padding: 8px 5px;
    }
    .logo{
        width: 25%;
    }
}


@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-mobile.active {
        display: flex;
    }
    header img{
        top: 0;
    }
    .header-content{
        height: 100%;
    }
    
    .benefits-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .slide-buttons,
    .philosophy-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        padding: 32px 24px;
    }
    .hero-simple p, .section-header p{
        font-size: 17px;
        line-height: 1.8;
    }
    .faq-grid{
        grid-template-columns: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .logo{
        width: 40%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-nav.prev {
        left: 8px;
    }
    
    .slider-nav.next {
        right: 8px;
    }
}