        :root {
            --primary: #2d5a4d;
            --primary-light: #3d7a66;
            --primary-dark: #1d4a3d;
            --accent: #d4a574;
            --accent-light: #e5c19a;
            --text-dark: #2c3e38;
            --text-light: #6b7f7a;
            --bg-cream: #faf8f5;
            --bg-white: #ffffff;
            --border-soft: #e8e4df;
        }

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

        body {
            font-family: 'Source Sans 3', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-soft);
            transition: box-shadow 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

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

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-svg {
            width: 50px;
            height: 50px;
        }

        .logo-text h1 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--text-light);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
            transition: all 0.3s ease;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            letter-spacing: 0.3px;
        }

        nav a:hover {
            color: var(--primary);
        }

        .cta-button {
            background: var(--primary);
            color: white !important;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 90, 77, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            margin-top: 90px;
            background: linear-gradient(rgba(45, 90, 77, 0.75), rgba(29, 74, 61, 0.85)),
                url('images/hero-background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 8rem 3rem;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text {
            max-width: 800px;
        }

        .hero-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: white;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-text h2 em {
            font-style: italic;
            color: var(--accent-light);
            font-weight: 700;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .btn-primary,
        .btn-secondary {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(45, 90, 77, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* Mission Section */
        .mission {
            padding: 6rem 3rem;
            background: var(--bg-white);
        }

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

        .section-tagline {
            font-size: 0.9rem;
            color: var(--accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .mission-text {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.9;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .value-card {
            background: var(--bg-cream);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 12px 30px rgba(45, 90, 77, 0.12);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .value-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Image Slider Section */
        .image-slider-section {
            margin-top: 5rem;
            padding: 0;
        }

        .image-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .image-slider {
            position: relative;
            width: 100%;
            height: 500px;
        }

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

        .slide.active {
            opacity: 1;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        /* Individual slide backgrounds */
        .slide-1 {
            background-image: url('images/slides/1.jpg');
        }

        .slide-2 {
            background-image: url('images/slides/2.jpg');
        }

        .slide-3 {
            background-image: url('images/slides/3.jpg');
        }

        .slide-4 {
            background-image: url('images/slides/4.jpg');
        }

        .slide-5 {
            background-image: url('images/slides/5.jpg');
        }

        /* Add decorative pattern overlay to slides */
        .slide-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .slide-overlay {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            background: rgba(45, 90, 77, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .slide-overlay h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 2.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        /* Slider Navigation Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(45, 90, 77, 0.8);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(45, 90, 77, 0.4);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Services Section */
        .services {
            padding: 6rem 3rem;
            background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-cream) 100%);
        }

        .services-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

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

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon-wrapper {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            padding: 3rem 2rem;
            text-align: center;
        }

        .service-icon {
            font-size: 3.5rem;
        }

        .service-content {
            padding: 2rem;
        }

        .service-card h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        .service-card ul {
            margin-top: 1.5rem;
            padding-left: 1.5rem;
        }

        .service-card li {
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 6rem 3rem;
            background: var(--bg-white);
        }

        .why-choose-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .feature-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: 700;
            min-width: 60px;
        }

        .feature-content h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 3rem;
            background: var(--bg-cream);
        }

        .gallery-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 4rem;
        }

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

        .gallery-item {
            height: 300px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item p {
            position: absolute;
            text-align: center;
        }

        border-radius: 12px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            text-align: center;
            padding: 2rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 3rem;
            background: var(--primary-dark);
            color: white;
        }

        .testimonials-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-header .section-tagline {
            color: var(--accent-light);
        }

        .testimonials-header .section-title {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-name {
            font-weight: 600;
            color: var(--accent-light);
        }

        .author-relation {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Review Feedback Section */
        .review-feedback {
            padding: 6rem 3rem;
            background: linear-gradient(135deg, #e8f5f0 0%, var(--bg-cream) 100%);
        }

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

        .review-intro {
            margin-bottom: 3rem;
        }

        .review-intro p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .review-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .review-option {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .review-option:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 12px 30px rgba(45, 90, 77, 0.15);
        }

        .review-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .review-option h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .review-option p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .review-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .review-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 90, 77, 0.3);
        }

        .review-form-container {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            max-width: 700px;
            margin: 3rem auto 0;
        }

        .review-form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .review-form-header h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .review-form-header p {
            color: var(--text-light);
        }

        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }

        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .star:hover,
        .star.active {
            color: #ffc107;
            transform: scale(1.1);
        }

        .review-form {
            margin-top: 2rem;
        }

        .review-form .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .review-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
            font-weight: 600;
        }

        .review-form input,
        .review-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-soft);
            border-radius: 8px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .review-form input:focus,
        .review-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .review-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-review-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-review-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 90, 77, 0.3);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .trust-badge-icon {
            font-size: 1.5rem;
            color: var(--accent);
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 3rem;
            background: var(--bg-white);
        }

        .faq-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: var(--bg-cream);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            padding: 1.8rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            user-select: none;
        }

        .faq-question:hover {
            color: var(--primary-light);
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 2rem 2rem;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 3rem;
            background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact-info h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .info-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .info-icon {
            font-size: 1.8rem;
            color: var(--accent);
            min-width: 40px;
        }

        .info-content h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .info-content p,
        .info-content a {
            color: var(--text-light);
            text-decoration: none;
            line-height: 1.7;
        }

        .info-content a:hover {
            color: var(--primary);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-soft);
            border-radius: 8px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group select {
            background-color: white;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d5a4d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 3rem;
        }

        .form-group input[type="date"] {
            cursor: pointer;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group small {
            color: var(--text-light);
            font-size: 0.85rem;
            display: block;
            margin-top: 0.5rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 90, 77, 0.3);
        }

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

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-section h4 {
            font-family: 'Libre Baskerville', serif;
            margin-bottom: 1.5rem;
            color: var(--accent-light);
        }

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

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 1rem 2rem;
            }

            .hero {
                padding: 5rem 2rem 4rem 2rem;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-text h2 {
                font-size: 3rem;
            }

            .why-choose-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            /* Navigation */
            nav ul {
                display: none;
            }
            
            /* When menu is open */
            nav ul li {
                width: 100%;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 1rem;
                font-size: 1.1rem;
                border-bottom: 1px solid var(--border-soft);
            }
            
            nav ul li:last-child a {
                border-bottom: none;
            }

            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-container {
                padding: 1rem 1.5rem;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .logo-text p {
                font-size: 0.65rem;
            }
            
            .logo-svg {
                width: 40px;
                height: 40px;
            }

            /* Hero Section */
            .hero {
                padding: 3rem 1.5rem;
                margin-top: 70px;
                min-height: 450px;
                background-attachment: scroll;
            }

            .hero-text h2 {
                font-size: 2.2rem;
                line-height: 1.3;
                margin-bottom: 1rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin-bottom: 2rem;
                line-height: 1.6;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
                padding: 1rem 2rem;
            }

            /* All Sections */
            .mission,
            .services,
            .why-choose,
            .gallery,
            .faq,
            .contact {
                padding: 3rem 1.5rem;
            }
            
            .testimonials {
                padding: 3rem 1.5rem;
            }

            .section-title {
                font-size: 2rem;
                line-height: 1.3;
            }
            
            .section-tagline {
                font-size: 0.8rem;
            }
            
            .mission-text {
                font-size: 1rem;
            }

            /* Values Grid */
            .values-grid,
            .services-grid,
            .testimonials-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .value-card {
                padding: 2rem 1.5rem;
            }
            
            .value-icon {
                font-size: 2.5rem;
            }
            
            .value-card h3 {
                font-size: 1.2rem;
            }

            /* Services */
            .service-card {
                margin-bottom: 0;
            }
            
            .service-icon-wrapper {
                padding: 2rem 1.5rem;
            }
            
            .service-icon {
                font-size: 3rem;
            }
            
            .service-content {
                padding: 1.5rem;
            }
            
            .service-card h3 {
                font-size: 1.3rem;
            }

            /* Why Choose Us */
            .feature-number {
                font-size: 2rem;
                min-width: 50px;
            }
            
            .feature-content h3 {
                font-size: 1.2rem;
            }

            /* Gallery */
            .gallery-item {
                height: 250px;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 2rem 1.5rem;
            }
            
            .quote-icon {
                font-size: 2.5rem;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }

            /* Review Feedback */
            .review-feedback {
                padding: 3rem 1.5rem;
            }

            .review-intro p {
                font-size: 1rem;
            }

            .review-options {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .review-option {
                padding: 2rem 1.5rem;
            }

            .review-icon {
                font-size: 2.5rem;
            }

            .review-form-container {
                padding: 2rem 1.5rem;
            }

            .review-form-header h3 {
                font-size: 1.5rem;
            }

            .star {
                font-size: 2rem;
            }

            .trust-badges {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }

            /* FAQ */
            .faq-question {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.5rem 1.5rem;
            }

            /* Contact */
            .contact-content {
                gap: 2rem;
            }
            
            .contact-info h2 {
                font-size: 2rem;
            }
            
            .contact-info p {
                font-size: 1rem;
            }
            
            .contact-form {
                padding: 2rem 1.5rem;
            }
            
            .info-icon {
                font-size: 1.5rem;
                min-width: 35px;
            }

            /* Footer */
            .footer {
                padding: 3rem 1.5rem 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 2rem;
            }
            
            .footer-about h3 {
                font-size: 1.3rem;
            }

            /* Image Slider Responsive */
            .image-slider-section {
                margin-top: 3rem;
            }
            
            .image-slider {
                height: 300px;
            }

            .slide-overlay {
                padding: 1.5rem 1rem;
            }
            
            .slide-overlay h3 {
                font-size: 1.5rem;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .slider-arrow.prev {
                left: 10px;
            }

            .slider-arrow.next {
                right: 10px;
            }

            .slider-dots {
                bottom: 15px;
                gap: 8px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .dot.active {
                width: 24px;
            }
        }
        
        /* Extra Small Devices */
        @media (max-width: 480px) {
            .hero {
                padding: 2.5rem 1rem;
                min-height: 400px;
            }
            
            .hero-text h2 {
                font-size: 1.8rem;
            }
            
            .hero-text p {
                font-size: 0.95rem;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .btn-primary, .btn-secondary {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }
            
            .image-slider {
                height: 250px;
            }
            
            .slide-overlay h3 {
                font-size: 1.2rem;
            }
            
            .contact-form,
            .value-card,
            .service-content {
                padding: 1.5rem 1rem;
            }
        }
