/* General Reset */
body, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

* {
    font-family: 'Poppins', Arial, sans-serif !important; /* Force the use of Poppins globally */
    font-weight: 200; /* Slim font weight */
}


/* Header Container */
.container {
    display: flex; /* Align logo and info-nav side by side */
    align-items: center; /* Vertically align items */
    justify-content: center; /* Center the content */
    max-width: 1200px; /* Constrain the header's width */
    margin: 0 auto; /* Center the header on the page */
}

/* Logo */
.logo img {
    margin-right: 20px; /* Adds space between the logo and info-nav */
}

/* Info and Navigation Section */
.info-nav {
    display: flex;
    flex-direction: column; /* Stack contact-info and nav-links vertically */
    justify-content: space-between; /* Ensure even spacing */
    height: 110px; /* Matches logo height */
    text-align: center; /* Centers the content within this section */
}

/* Contact Info Section */
.contact-info {
    color: black;
    padding: 30px 0px;
    padding-top: 20px;
    font-size: 0.9rem;
    text-align: right;
    text-decoration:none;
}

.contact-info a {
    text-decoration: none;
    margin: 0 5px;
}

/* Navigation Bar */
.nav-links ul {
    display: flex;
    gap: 0px;
    justify-content: flex-end; /* Align navigation to the right */
    padding: 0;
}

.nav-links a {
    display: inline-block;
    padding: 8px 15px;
    color: darkslateblue;
    font-size: 0.9rem;
    font-size:1em;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
}

.nav-links button {
    display: inline-block;
    padding: 8px 15px;
    color: darkslateblue;
    font-size: 1em;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button-link {
    font-family: inherit;
}

.nav-links a:hover {
    background-color: cadetblue;
    color: white;
}

.nav-links button:hover {
    background-color: cadetblue;
    color: white;
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh; /* Allow content to grow on small screens */
    color: white;
    text-align: center;
    display: block;
    background: url('../images/jsjimage.webp') no-repeat center center/cover;
    overflow: hidden;
    padding: 80px 0;
}

/* Overlay to darken the background */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 0; /* Places the overlay beneath the content */
    pointer-events: none;
}

.hero-content {
    z-index: 1; /* Ensures content appears above the overlay */
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem; /* Adjusted for the smaller height */
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem; /* Adjusted for the smaller height */
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #007bff;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background 0.3s;
    transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.cta-button:hover {
    background: #0056b3;
    box-shadow: 0 0 20px #6fc5ff50;
    transform: scale(1.1);
}

.cta-button:active {
    background-color: #3d94cf;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
  }


/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.services h2 {
    font-size: 2rem; /* Increased font size for better visibility */
    color: #333;
    margin-bottom: 40px; /* Added more space between the title and the cards */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1; /* Ensures cards are below the title visually */
}

.service-title {
    font-size:1.5em;
    margin-bottom:10px;
    color: #007bff;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

/* Why Choose Us Section */
.why-choose-us .container {
    display: flex;
    align-items: center; /* Vertically align the image and text */
    justify-content: space-between; /* Distribute space evenly */
    gap: 20px; /* Reduce gap between the image and text */
    flex-wrap: wrap; /* Ensure responsiveness for smaller screens */
}


.why-choose-us .content {
    flex: 1;
    width: auto;
    text-align: left;
    padding: 10px 10px;
}

.why-choose-us .content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-us .content h3 {
    font-size: 1.3rem;
    color: #007bff;
    margin: 24px 0 10px;
}

.why-choose-us .content p {
    margin: 0 0 14px;
    color: #555;
    line-height: 1.7;
}

.why-choose-us .content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 14px;
}

.why-choose-us .content li {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.why-choose-us .content li strong {
    color: #007bff;
}

.why-choose-us .content .about-cta {
    background: #fff;
    border-left: 4px solid #007bff;
    padding: 12px 16px;
    border-radius: 8px;
}

.why-choose-us .content .about-cta a {
    color: #007bff;
}



 
.why-choose-us .image {
    width: auto;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin: 0; 
    padding: 0; 

    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-us .image:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.why-choose-us .image img {
    height:400px;
    width:auto;
    margin-right:0px;
    border-radius: 10px;
}

/* Testimonials */
.testimonials {
    background: #007bff;
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.rating-author {
    color:lightblue;
}

.star-rating {
    color:gold;
}

.testimonial-carousel {
    display: flex;
    overflow: auto;
    gap: 20px;
    padding:10px 10px;
    justify-content: center;
}

.testimonial {
    background: #0056b3;
    padding: 20px;
    border-radius: 10px;
    flex: 0 0 300px;
    text-align: center;
    transition: 400ms;
}

.testimonial-carousel .testimonial:hover {
    transform: scale(1.1, 1.1);
  }
  
  .testimonial-carousel:hover > .testimonial:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
  }



/* Contact Section */

.contact-section h2 {
    font-size: 1.5rem;
    color: cadetblue;
    margin-bottom: 20px; /* Add space below the heading */
    text-align: center;
}

.contact-section p {
    font-size: .9rem;
    color: cadetblue;
    margin-bottom: 30px; /* Add space below the paragraph */
    text-align: center;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

/* Form Group */
.form-group {
    display: flex;
    gap: 20px; /* Space between fields in the same group */
    margin-bottom: 20px;
}

/* Form Field - Inline Labels and Inputs */
.form-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between label and input */
    flex: 1; /* Ensure equal width for all fields in a group */
}


/* Focus State */
.form-field input:focus,
.form-field textarea:focus {
    border-color: #007bff;
    outline: none;
}


/* Full-Width Field for Message */
.form-field.full-width {
    flex-direction: column; /* Stack the label and textarea */
    align-items: flex-start; /* Align items to the left */
    gap: 5px; /* Add small spacing between label and textarea */
}



/* Inline Labels and Inputs */
.form-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between label and input */
    flex: 1; /* Ensure equal width for all fields in a group */
}
#full-name {
    width:250px;
}

#email {
    width:350px;
}

.text-field {
    border:none;
    border-bottom:1px solid cadetblue;
    text-align: center;
}

::placeholder {
    color:cadetblue;
}

/* Full-Width Field for Textarea */
.form-field.textarea-field {
    flex-direction: column; /* Stack the label and textarea */
    align-items: flex-start; /* Align items to the left */
    gap: 5px; /* Add spacing between label and textarea */
}


textarea {
    width: 100%; /* Full width for textarea */
    height:100px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
    margin-bottom: 20px;
    text-align: center;
}


/* Submit Button */
.btn-submit {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width for consistency */
}

.btn-submit:hover {
    background-color: #0056b3;
}


/* Newsletter Section */
.newsletter-section {
    color: cadetblue;
    padding: 60px 20px;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
}



.newsletter-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.newsletter-container p {
    font-size: 1rem;
    margin-bottom: 20px;
}


/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px; /* Space between input and button */
    justify-content: center; /* Center elements in the form */
    align-items: center;
}

.newsletter-form input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color:lavender;
    border-radius: 5px;
    width: 300px; /* Set width for input field */
}
.newsletter-form input:active {
    border:none;
}

.newsletter-form button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    width:150px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50; /* Dark contrasting background */
    color: white;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensure responsiveness */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px; /* Ensures sections stay readable on smaller screens */
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ecf0f1; /* Slightly lighter text for headings */
}

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-section a {
    color: #3498db; /* Blue links for emphasis */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1abc9c; /* Teal hover effect for links */
}

/* Quick Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ecf0f1;
}

.footer-section ul li a:hover {
    color: #1abc9c;
}

/* Copyright Container */
.copyright-container {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #bdc3c7; /* Subtle gray for copyright text */
}


/* Mobile-first conversion-focused overrides */
/* Variables and base */
:root { --brand:#007bff; --brand-dark:#0056b3; --text:#333; --muted:#555; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { color: var(--text); line-height: 1.6; }
.container { width: 100%; max-width: 1100px; padding: 0 16px; }

/* Header */
.top-header { position: sticky; top: 0; background: #fff; z-index: 1000; }
.contact-info-row { border-bottom: 1px solid #eee; }
.contact-info-row .container { justify-content: flex-end; padding: 6px 16px; }
.contact-info-row .contact-info { display: block; margin: 0; padding: 0; text-align: right; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eee; }
.top-header .logo { display: flex; align-items: center; line-height: 1; }
.top-header .info-nav { display: flex; flex-direction: row; align-items: center; justify-content: flex-end; gap: 16px; height: auto; text-align: right; }
.logo img { height: 40px; width: auto; display: block; }
.contact-info { font-size: 0.9rem; color: #000; }
.contact-info a { color: var(--brand-dark); }
.menu-toggle { background: transparent; border: 1px solid #ddd; border-radius: 6px; padding: 8px 10px; display: inline-flex; align-items: center; gap: 8px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: #333; position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #333; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Nav */
.nav-links { display: none; }
.nav-links.open { display: block; }
.nav-links ul { display: flex; flex-direction: column; gap: 6px; padding: 10px 0; }
.nav-links a { padding: 10px 12px; color: darkslateblue; font-size: 1rem; border-radius: 6px; text-align: left; display: block; }
.nav-links a:hover { background-color: cadetblue; color: #fff; }

/* Hero refinements */
.hero { min-height: 62vh; }
.hero .container { position: relative; z-index: 1; }
.hero .hero-grid { display: grid; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.hero-content { max-width: 720px; padding: 24px; text-align: center; margin: 0 auto; }
.hero-content h1 { font-size: 1.9rem; margin-bottom: 12px; }
.hero-content p { font-size: 1.05rem; margin-bottom: 18px; }
.hero-form { background: #fff; color: var(--text); border-radius: 14px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.2); justify-self: end; margin-top: 40px; max-width: 420px; }
.hero-form h2 { font-size: 1.4rem; margin-bottom: 6px; color: var(--brand-dark); }
.hero-form p { font-size: .95rem; margin-bottom: 16px; color: var(--muted); }
.hero-quote-form { display: grid; gap: 12px; }
.hero-quote-form .text-field { width: 100%; text-align: center; }
.hero-quote-form textarea.text-field { border: 1px solid #ddd; border-radius: 8px; padding: 10px; }
.hero-quote-form .btn-submit { width: 100%; }
.cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-button { padding: 12px 16px; border-radius: 8px; }
.cta-button.secondary { background: #10b981; }
.trust-row { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 10px; color: #e6f2ff; opacity: .95; font-size: .95rem; }
.trust-row .stars { color: gold; letter-spacing: 1px; }

/* Services */
.services { padding: 40px 16px; }
.services h2 { font-size: 1.6rem; margin-bottom: 24px; }
.service-grid { grid-template-columns: 1fr; gap: 16px; }
.service-card { padding: 18px; box-shadow: 0 4px 8px rgba(0,0,0,.08); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 8px 16px rgba(0,0,0,.15); }
.service-title { font-size: 1.2rem; margin-bottom: 6px; color: var(--brand); }

/* Why Choose Us */
.why-choose-us { padding: 40px 16px; }
.why-choose-us .container { display: grid; grid-template-columns: 1fr; gap: 16px; }
.why-choose-us .content h2 { font-size: 1.6rem; margin-bottom: 12px; }
.why-choose-us .content li { margin-bottom: 12px; font-size: 1rem; color: var(--muted); }
.why-choose-us .content li strong { color: var(--brand); }
.why-choose-us .image img { width: 100%; max-height: 320px; height: auto; border-radius: 10px; object-fit: cover; box-shadow: 0 4px 8px rgba(0,0,0,.1); }

/* Testimonials */
.testimonials { padding: 40px 16px; }
.testimonial-carousel { gap: 16px; padding: 8px 4px; scroll-snap-type: x proximity; }
.testimonial { flex: 0 0 85%; scroll-snap-align: start; }

/* Contact */
.contact-section { padding: 40px 16px; }
.contact-section h2 { font-size: 1.4rem; margin-bottom: 10px; }
.contact-section p { font-size: .95rem; margin-bottom: 16px; }
.contact-form { max-width: 760px; padding: 18px; border-radius: 10px; margin-top: 12px; margin-left: 0; margin-right: auto; }
.form-group { flex-direction: column; gap: 12px; margin-bottom: 12px; }
.form-field { flex-direction: column; gap: 6px; }
.text-field { padding: 10px 6px; font-size: 1rem; background: #fff; }
.text-field:focus { outline: none; border-bottom-color: var(--brand); }
.form-field.textarea-field textarea { width: 100%; height: 110px; padding: 10px; font-size: 1rem; border: 1px solid #ddd; border-radius: 8px; resize: none; }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.visually-hidden { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Newsletter */
.newsletter-section { padding: 40px 16px; }
.newsletter-container h2 { font-size: 1.6rem; margin-bottom: 8px; }
.newsletter-form { flex-wrap: wrap; }
.newsletter-form input { width: 100%; max-width: 320px; }
.newsletter-form button { width: 160px; }

/* Footer */
.footer { padding: 32px 16px; }
.footer-content { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1100px; margin: 0 auto; }
.footer-section h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* Sticky mobile CTA */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; display: flex; gap: 10px; padding: 10px 16px; background: rgba(255,255,255,.98); box-shadow: 0 -6px 20px rgba(0,0,0,.08); z-index: 1000; }
.mobile-cta a { flex: 1; text-align: center; padding: 12px; background: var(--brand); color: #fff; border-radius: 10px; font-weight: 600; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #0f172a;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  display: none;
  z-index: 1200;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h3 { font-size: 1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: #cbd5e1; margin-bottom: 12px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-accept { background: #38bdf8; color: #0f172a; }
.cookie-decline { background: transparent; border: 1px solid #475569; color: #e2e8f0; }

/* Auth + Admin */
.auth-page, .admin-page { background: #f5f7fb; min-height: 100vh; }
.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-card { background: #fff; border-radius: 12px; padding: 28px; width: 100%; max-width: 420px; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.auth-card h1 { font-size: 1.6rem; margin-bottom: 6px; color: var(--brand-dark); }
.auth-card p { color: var(--muted); margin-bottom: 16px; }
.auth-form { display: grid; gap: 12px; }
.auth-field { display: grid; gap: 6px; text-align: left; }
.auth-field span { font-size: 0.95rem; color: var(--text); }
.auth-field input { border: 1px solid #ddd; border-radius: 8px; padding: 10px 12px; font-size: 1rem; }
.auth-remember { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--muted); }
.auth-errors { background: #ffecec; color: #b00020; padding: 10px 12px; border-radius: 8px; font-size: 0.95rem; }

.admin-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: #fff; border-bottom: 1px solid #e7e7e7; }
.admin-header h1 { font-size: 1.5rem; color: var(--brand-dark); }
.admin-container { max-width: 900px; margin: 0 auto; padding: 24px; }
.admin-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.admin-card h2 { margin-bottom: 8px; }

/* About Page */
.about-page {
  --heritage-ink: #2f2b28;
  --heritage-accent: #8a4b2a;
  --heritage-muted: #6d5b4b;
  --heritage-paper: #f7f1e8;
  --heritage-sand: #ead7c5;
  --heritage-slate: #2b3a42;
  background: var(--heritage-paper);
  color: var(--heritage-ink);
}

.about-page .container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  width: min(1200px, 90%);
}

.about-page h1,
.about-page h2,
.about-page h3 {
  font-family: "Cormorant Garamond", "Poppins", serif !important;
  color: var(--heritage-slate);
  letter-spacing: 0.4px;
}

.about-page p,
.about-page li {
  color: var(--heritage-muted);
  line-height: 1.7;
}

.about-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #f8f2e9 0%, #efdfcc 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--heritage-accent);
  font-weight: 600;
}

.about-hero-text h1 {
  font-size: 3rem;
  margin: 12px 0 18px;
}

.about-hero-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-hero-stats div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(138, 75, 42, 0.2);
  padding: 14px 16px;
  border-radius: 10px;
}

.stat-number {
  display: block;
  font-size: 1.1rem;
  color: var(--heritage-accent);
  font-weight: 600;
}

.stat-label {
  font-size: 0.85rem;
}

.about-hero-images {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 380px;
  gap: 16px;
}

.image-tile {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 58, 66, 0.12);
  border: 1px solid rgba(43, 58, 66, 0.08);
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-tile.large {
  grid-row: span 1;
}

.about-story {
  padding: 70px 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.story-card {
  background: var(--heritage-paper);
  border: 1px solid rgba(138, 75, 42, 0.15);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(43, 58, 66, 0.08);
}

.story-card h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.story-signature {
  margin-top: 18px;
  font-weight: 600;
  color: var(--heritage-accent);
}

.story-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(43, 58, 66, 0.15);
}

.about-values {
  padding: 70px 0;
  background: var(--heritage-paper);
}

.values-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.values-text h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(43, 58, 66, 0.08);
  box-shadow: 0 10px 24px rgba(43, 58, 66, 0.08);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.about-gallery {
  padding: 70px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-tile {
  background: var(--heritage-paper);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
}

.gallery-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-tile span {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--heritage-accent);
  font-weight: 600;
}

.about-services {
  padding: 70px 0;
  background: var(--heritage-paper);
}

.about-services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.about-services h2 {
  font-size: 2.4rem;
}

.services-cards {
  display: grid;
  gap: 16px;
}

.service-pill {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(138, 75, 42, 0.15);
  box-shadow: 0 10px 20px rgba(43, 58, 66, 0.08);
}

.service-pill h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.about-process {
  padding: 70px 0;
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-step {
  background: var(--heritage-paper);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(43, 58, 66, 0.08);
}

.step-number {
  color: var(--heritage-accent);
  font-weight: 700;
  letter-spacing: 1px;
}

.about-team {
  padding: 70px 0 40px;
  background: var(--heritage-paper);
} 

.about-team-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.team-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(43, 58, 66, 0.15);
}

.team-content h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.team-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(43, 58, 66, 0.08);
}

.team-card .role {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
  color: var(--heritage-accent);
  font-weight: 600;
}

.about-cta {
  padding: 60px 0 90px;
  background: #fff;
}

.about-cta-box {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  background: var(--heritage-paper);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(138, 75, 42, 0.2);
}

.about-cta-box > div {
  flex: 1;
  min-width: 0;
}

.about-cta-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-cta-box p {
  margin: 0;
  max-width: 680px;
}

.about-cta-box a {
  color: var(--heritage-accent);
  font-weight: 600;
}

.about-cta-button {
  background: #007bff;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  justify-self: start;
}

.about-cta-action {
  display: flex;
  justify-content: flex-start;
}

.about-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 123, 255, 0.4);
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-grid,
  .about-services-grid,
  .about-team-grid,
  .values-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-images {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    margin-top: 16px;
  }

  .about-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 70px 0 50px;
  }

  .about-hero-text h1 {
    font-size: 2.4rem;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;
  }

  .about-hero-images {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .image-tile.large {
    grid-row: span 1;
  }
}

/* Responsive breakpoints */
@media (max-width: 767px) {
  .header-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .info-nav { height: auto; width: auto; }
  .contact-info { text-align: left; padding: 10px 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; margin: 0 auto; }
  .hero-form { justify-self: center; margin-top: 20px; }
}

@media (min-width: 768px) {
  .contact-info { display: block; text-align: right; }
  .menu-toggle { display: none; }
  .nav-links { display: block !important; }
  .nav-links ul { flex-direction: row; justify-content: flex-end; gap: 4px; padding: 0; }
  .nav-links a { text-align: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-choose-us .container { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 24px; }
  .testimonial { flex: 0 0 300px; }
  .hero-content { text-align: left; margin: 0; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1.2rem; }
  .mobile-cta { display: none; }
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}
