@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --color-sage: #7D9A86;
    --color-sage-light: #A8C4AE;
    --color-burgundy: #6B2D3A;
    --color-gold: #C4A35A;
    --color-cream: #F5F0E8;
    --color-charcoal: #2C2C2C;
    --color-ivory: #FFFFF0;
    --color-platinum: #E5E4E2;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-luxury: 0 15px 50px rgba(0,0,0,0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

strong, b, p {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-burgundy);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-burgundy);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-smooth);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sage-light) 50%, var(--color-platinum) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23C4A35A' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 45, 58, 0.1) 0%, rgba(125, 154, 134, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-burgundy);
    color: var(--color-ivory);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 2px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--color-charcoal);
}

.hero-title span {
    color: var(--color-burgundy);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-charcoal);
    opacity: 0.85;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-burgundy);
    color: var(--color-ivory);
    box-shadow: 0 4px 15px rgba(107, 45, 58, 0.3);
}

.btn-primary:hover {
    background: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-ivory);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.btn-gold:hover {
    background: var(--color-burgundy);
    color: var(--color-ivory);
}


.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}


.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}


.about-section {
    background: var(--color-ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-luxury);
}

.about-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-light));
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    opacity: 0.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-ivory);
    font-size: 1.2rem;
}

.about-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.about-feature-text p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}


.services-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--color-platinum) 0%, transparent 100%);
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-price {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-burgundy);
    font-weight: 500;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--color-gold);
    gap: 12px;
}


.advantages-section {
    background: var(--color-charcoal);
    color: var(--color-ivory);
}

.advantages-section .section-title {
    color: var(--color-ivory);
}

.advantages-section .section-description {
    color: rgba(255, 255, 240, 0.7);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 240, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 240, 0.1);
    transition: var(--transition-smooth);
}

.advantage-item:hover {
    background: rgba(255, 255, 240, 0.1);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.advantage-title {
    font-size: 1.3rem;
    color: var(--color-ivory);
    margin-bottom: 15px;
}

.advantage-description {
    font-size: 0.95rem;
    opacity: 0.8;
}


.reviews-section {
    background: var(--color-cream);
}

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

.review-card {
    background: var(--color-ivory);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    position: absolute;
    top: 10px;
    left: 25px;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
}

.review-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    font-size: 1rem;
}

.review-location {
    font-size: 0.85rem;
    opacity: 0.7;
}


.cta-section {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-charcoal) 100%);
    color: var(--color-ivory);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--color-ivory);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
}

/* Services Detailed Section */
.services-detailed-section {
    background: var(--color-ivory);
    position: relative;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: var(--color-ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.service-detail-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-detail-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-price {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.service-detail-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-detail-content p {
    margin-bottom: 20px;
    opacity: 0.85;
    font-size: 0.95rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1rem;
}

.service-note {
    margin-top: auto;
    padding: 15px 20px;
    background: rgba(196, 163, 90, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Pricing Info Section */
.pricing-info-section {
    background: var(--color-cream);
    position: relative;
}

.pricing-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.pricing-factor {
    background: var(--color-ivory);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.pricing-factor:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.pricing-factor h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--color-burgundy);
}

.pricing-factor p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(196, 163, 90, 0.1);
    border-radius: 8px;
    font-size: 1.05rem;
}

.pricing-cta a {
    color: var(--color-burgundy);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.pricing-cta a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    background: var(--color-ivory);
    position: relative;
}

.footer {
    background: var(--color-charcoal);
    color: var(--color-platinum);
    padding: 80px 0 30px;
}

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

.footer-brand p {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--color-ivory);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 450px;
    background: var(--color-ivory);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    z-index: 9999;
    display: block;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-banner h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.cookie-consent-banner p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn-accept {
    background: var(--color-burgundy);
    color: var(--color-ivory);
    border: none;
}

.cookie-btn-accept:hover {
    background: var(--color-charcoal);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
}

.cookie-btn-decline:hover {
    background: var(--color-charcoal);
    color: var(--color-ivory);
}


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

.team-card {
    background: var(--color-ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    opacity: 0.8;
}


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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--color-ivory);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    color: var(--color-ivory);
    margin-bottom: 5px;
}

.gallery-category {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--color-ivory);
    position: relative;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.portfolio-filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--color-charcoal);
    color: var(--color-ivory);
    border-color: var(--color-charcoal);
}

.portfolio-testimonials {
    background: var(--color-cream);
    position: relative;
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-ivory);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    color: var(--color-charcoal);
    transition: var(--transition-smooth);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

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

.faq-answer-content {
    padding: 0 30px 25px;
    opacity: 0.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 35px;
}

.contact-details {
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ivory);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-text p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--color-ivory);
    padding: 45px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

/* Contact Page Specific */
.contact-content-section {
    background: var(--color-ivory);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section {
    padding-right: 20px;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-section > p {
    opacity: 0.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.service-area-info {
    margin-top: 40px;
    padding: 25px;
    background: rgba(196, 163, 90, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

.service-area-info h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-burgundy);
}

.service-area-info p {
    margin-bottom: 15px;
    opacity: 0.85;
    font-size: 0.95rem;
}

.service-area-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-area-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    opacity: 0.85;
    font-size: 0.95rem;
}

.service-area-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.contact-form-section {
    position: sticky;
    top: 120px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-ivory);
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.1);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-burgundy);
    color: var(--color-ivory);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-submit:hover {
    background: var(--color-charcoal);
}


.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-ivory);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -35px;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    display: none;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
    color: var(--color-ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-description {
    font-size: 0.95rem;
    opacity: 0.8;
}


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

.blog-card {
    background: var(--color-ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
    background: var(--color-ivory);
    position: relative;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--color-cream);
    position: relative;
}

.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-card h2 {
    margin-bottom: 20px;
}

.newsletter-card p {
    margin-bottom: 30px;
    opacity: 0.85;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form .form-input {
    flex: 1;
    min-width: 250px;
}

.newsletter-form .btn {
    min-width: 150px;
}


.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 3rem;
    color: var(--color-ivory);
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 35px;
}


.legal-section {
    padding: 150px 0 80px;
    background: var(--color-ivory);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    opacity: 0.85;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    opacity: 0.85;
}


.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sage-light) 50%, var(--color-platinum) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-ivory);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
