/* Base Styles */
:root {
    --primary-bg: #000000;
    --primary-text: #ffffff;
    --accent-color: #b28c60;
    --accent-hover: #d4af7a;
    --secondary-bg: #121212;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --light-accent: rgba(255, 255, 255, 0.1);
    --header-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-text);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-text);
    padding: 0.8rem 2rem;
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-text);
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--accent-color);
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.loading {
    text-align: center;
    padding: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-family: var(--header-font);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.tagline {
    font-family: var(--body-font);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-family: var(--body-font);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Services Preview Section */
.services-preview {
    background-color: var(--secondary-bg);
    text-align: center;
}

.services-preview h2, .section-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 5px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    background-color: var(--accent-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* About Preview Section */
.about-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image:after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    z-index: -1;
}

/* Gallery Preview Section */
.gallery-preview {
    text-align: center;
    background-color: var(--secondary-bg);
    padding: 5rem 2rem;
}

.gallery-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Testimonial Preview */
.testimonial-preview {
    text-align: center;
}

.testimonial-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client {
    font-family: var(--header-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.control {
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.control:hover {
    color: var(--accent-color);
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    padding: 5rem 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 0.8rem;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../images/page-header.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 6rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-story {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image:after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    z-index: -1;
}

.story-text {
    flex: 1;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    flex: 1 1 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-member {
    flex: 1 1 300px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-color);
}

.member-role {
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.reasons-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.reason {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.reason-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    min-width: 50px;
}

/* Services Page Styles */
.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 200px;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 70px;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--header-font);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Gallery Page Styles */
.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary-text);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-family: var(--body-font);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.modal-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 5% auto;
    padding: 20px;
}

.modal-image-container {
    flex: 3;
    position: relative;
}

#modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-details {
    flex: 1;
    padding: 1.5rem 0;
    color: var(--primary-text);
}

.modal-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--accent-color);
}

/* Blog Page Styles */
.blog-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.search-container {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
}

#blog-search {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-text);
    font-family: var(--body-font);
}

#search-btn {
    padding: 0 1.5rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--primary-text);
    cursor: pointer;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.blog-card {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-text);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.page-link {
    display: inline-block;
    margin: 0 0.5rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background-color: var(--accent-color);
}

.newsletter {
    background-color: var(--secondary-bg);
    text-align: center;
    padding: 4rem 2rem;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    margin-top: 2rem;
}

#newsletter-email {
    flex: 1;
    padding: 0.8rem;
    border: none;
    font-family: var(--body-font);
}

/* Blog Post Page */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.post-header {
    margin-bottom: 3rem;
}

.post-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.post-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
}

.post-date, .post-category {
    display: flex;
    align-items: center;
}

.post-date i, .post-category i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.post-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-content {
    line-height: 1.8;
}

.post-content p, .post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
}

.post-content h2, .post-content h3 {
    margin: 2rem 0 1rem;
}

.post-content blockquote {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
}

.share-post {
    text-align: center;
    margin: 3rem 0;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook:hover {
    background-color: #3b5998;
}

.share-btn.twitter:hover {
    background-color: #1da1f2;
}

.share-btn.pinterest:hover {
    background-color: #bd081c;
}

.share-btn.whatsapp:hover {
    background-color: #25d366;
}

.share-btn.email:hover {
    background-color: var(--accent-color);
}

.related-posts {
    padding: 3rem 2rem;
    background-color: var(--secondary-bg);
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* Testimonials Page */
.testimonials-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.testimonials-summary {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.rating-summary {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-family: var(--header-font);
    margin-bottom: 0.5rem;
}

.testimonials-message {
    flex: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.event-type {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.testimonial-rating {
    color: var(--accent-color);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-date {
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.share-testimonial {
    text-align: center;
    margin: 5rem 0;
}

.share-testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-form-section {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-select input {
    display: none;
}

.rating-select label {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    margin-right: 0.5rem;
}

.rating-select label:hover,
.rating-select label:hover ~ label,
.rating-select input:checked ~ label {
    color: var(--accent-color);
}

/* Quote Page */
.quote-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.quote-form-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.quote-form {
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 8px;
}

.quote-form h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
}

.quote-form h3:first-child {
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-text);
    font-family: var(--body-font);
    border-radius: 4px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    display: block;
}

.note {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

.terms-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.quote-faq {
    background-color: var(--secondary-bg);
    text-align: center;
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Contact Page */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.contact-card {
    flex: 1 1 250px;
    background-color: var(--dark-gray);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.contact-form-container, .map-container {
    flex: 1 1 500px;
}

.contact-form {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
}

.google-map {
    margin-top: 2rem;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.quick-links {
    background-color: var(--secondary-bg);
    text-align: center;
}

.quick-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.quick-link-card {
    flex: 1 1 250px;
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.quick-link-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Placeholder for images until real ones are added */
#placeholder-image {
    background-color: #333;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

#placeholder-image::after {
    content: 'Image Placeholder';
}

/* Animation for scroll reveal */
.animate {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-preview, .about-story, .service-detail, .contact-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-detail.reverse {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .service-image, .story-image {
        margin-bottom: 2rem;
    }
    
    .service-image:after, .story-image:after, .about-image:after {
        display: none;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        display: none;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }
    
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    
    .footer-content > div {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }
    
    .gallery-preview-container, .gallery-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 400px;
    }
    
    .quote-form {
        padding: 2rem 1.5rem;
    }
}