:root {
  --primary-color: #2C5282;
  --secondary-color: #4299E1;
  --accent-color: #48BB78;
  --text-color: #2D3748;
  --light-bg: #F7FAFC;
  --white: #FFFFFF;
}

body {
  color: var(--text-color);
  line-height: 1.5;
}

/* Header Styles */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

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

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

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative; /* For the blur effect */
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  margin-top: 60px;
  overflow: hidden; /* Contain the blur */
}

/* Background layer with blur */
.hero::before {
  content: '';
  position: absolute;
  top: -20px; /* Extend beyond boundaries to prevent edge artifacts */
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: url('../img/arch1.jpeg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

/* Overlay gradient */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(44, 82, 130, 0.85)
  );
  z-index: -1;
}

/* Ensure content stays above the blur and overlay */
.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle text shadow for better readability */
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 2rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background: #3DA066;
}

/* Service Cards */
.services-preview {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.service-cards {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  display: none;
}

.service-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: opacity 0.3s ease;
}

.service-card:nth-child(2)::before {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.service-card:nth-child(3)::before {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.service-card:hover::before {
  opacity: 0.9;
}

.service-card h3 {
  padding: 1rem 1rem 0.5rem;
  color: var(--primary-color);
}

.service-card p {
  padding: 0 1rem 1rem;
  color: var(--text-color);
}

.service-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 1rem 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* Benefits Section */
.benefits-grid {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  justify-content: center;
  justify-items: center;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 300px;
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Footer Styles */
.main-footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Section Headers */
.services-preview h2,
.why-choose-us h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.services-preview h2::after,
.why-choose-us h2::after,
.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.why-choose-us {
    padding: 64px 0;
}

/* Add some subtle animation to the gradients */
.service-card::before {
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Add hover effect to the quote mark */
.testimonial-card:hover .testimonial-quote {
    color: var(--secondary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Services Page Styles */
.page-header {
    background: linear-gradient(
        rgba(44, 82, 130, 0.9),
        rgba(66, 153, 225, 0.8)
    );
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-section {
    padding: 4rem 2rem;
}

.service-section:nth-child(even) {
    background: var(--light-bg);
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse .service-info {
    direction: ltr;
}

.service-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.service-pricing {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-pricing h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Update service image styles */
.service-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-img:hover {
    transform: scale(1.05);
}

/* Remove or comment out the old placeholder styles */
.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gradient-1, .gradient-2, .gradient-3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

@media (max-width: 968px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content.reverse {
        direction: ltr;
    }

    .image-placeholder {
        height: 300px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-info h2 {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1.1rem;
    }

    .image-placeholder {
        height: 200px;
    }
}

/* Booking Page Styles */
.booking-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-bg);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 1rem;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--accent-color);
    color: var(--white);
}

.step-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.service-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + label {
    border-color: var(--accent-color);
    background: rgba(72, 187, 120, 0.1);
}

.service-option h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.duration {
    display: block;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Form Styling Improvements */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--text-color);
    font-family: inherit;
}

/* Improve focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Style date input */
.form-group input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 1rem;
    cursor: pointer;
}

/* Style select dropdowns */
.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232D3748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

/* Style textarea */
.form-group textarea {
    min-height: 120px;
    line-height: 1.6;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0AEC0;
}

/* Form step headers */
.form-step h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

/* Error state improvements */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
    background-color: #FFF5F5;
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #e53e3e;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* Hover states */
.form-group input:hover:not(:focus):not(.error),
.form-group select:hover:not(:focus):not(.error),
.form-group textarea:hover:not(:focus):not(.error) {
    border-color: var(--secondary-color);
}

/* Mobile improvements */
@media (max-width: 768px) {
    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on mobile */
    }
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-step,
.next-step,
.submit-booking {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.prev-step {
    background: var(--light-bg);
    color: var(--text-color);
}

.next-step,
.submit-booking {
    background: var(--accent-color);
    color: var(--white);
}

.prev-step:hover {
    background: #E2E8F0;
}

.next-step:hover,
.submit-booking:hover {
    background: #3DA066;
}

@media (max-width: 768px) {
    .booking-container {
        padding: 1.5rem;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-buttons button {
        width: 100%;
    }
}

/* Form Error Styles */
.error {
    border-color: #e53e3e !important;
}

/* Special handling for radio button errors */
.service-option input[type="radio"].error + label {
    border-color: #e53e3e;
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story {
    padding: 4rem 0;
}

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

.story-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Values Section */
.about-values {
    background: var(--light-bg);
    padding: 4rem 0;
}

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

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.about-team {
    padding: 4rem 0;
}

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

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

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-color);
    line-height: 1.6;
}

/* Stats Section */
.about-stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story-content h2,
    .about-values h2,
    .about-team h2 {
        font-size: 2rem;
    }

    .story-content p {
        font-size: 1.1rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .member-photo {
        width: 150px;
        height: 150px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    margin-bottom: 4rem;
}

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

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-color);
    margin: 0;
}

.info-content .subtitle {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #3DA066;
}

/* FAQ Section Styles */
.faq-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

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

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }

    .info-items {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        padding: 1.5rem;
    }

    .contact-info h2,
    .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-bottom: 1rem;
    }
} 