/* The Cockney Spaniels Website Styles - Based on Man's Best Friend KC Template */

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

/* CSS Variables for consistent theming */
:root {
    --primary-color: #1B3A2F;
    --text-dark: #FFF8F0;
    --text-medium: #E8DCC8;
    --text-light: #D4C5AD;
    --background-white: #1B3A2F;
    --background-light: #234D3E;
    --border-light: #2F5A47;
    --accent-gold: #D4AF37;
    --link-color: #FFF8F0;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    --content-max-width: 1200px;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.subheading {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.emphasis-text {
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
    margin: 2rem 0;
    font-size: 1.5rem;
    line-height: 1.5;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

strong {
    font-weight: 600;
}

/* Links */
a {
    color: var(--link-color);
    text-decoration: none;
}

.text-link {
    text-decoration: underline;
    color: var(--text-dark);
}

.text-link:hover {
    opacity: 0.7;
}

/* Navigation */
.navbar {
    background-color: var(--background-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--background-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    list-style: none;
    gap: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Image Section */
.hero-image {
    width: 100%;
    margin-bottom: 4rem;
    padding: 4px;
    background-color: var(--text-dark);
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Main Content Sections */
.main-content {
    background-color: var(--background-white);
}

/* Primary Headline */
.primary-headline {
    padding: 4rem 0;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Service Sections */
.service-section {
    padding: var(--section-padding);
    text-align: center;
}

.service-section.highlight-section {
    background-color: var(--background-light);
}

.service-intro {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Feature Images */
.feature-image {
    padding: 2rem 0;
}

.feature-image .container {
    padding: 2px;
    background-color: var(--text-dark);
}

.full-width-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* CTA Buttons */
.cta-button-container {
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #D4C5AD;
    color: var(--background-white);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F5A47;
    border-radius: 50%;
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.feature-link {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.feature-link:hover {
    opacity: 0.7;
}

/* Services Overview */
.services-overview {
    padding: var(--section-padding);
}

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

.services-link {
    display: inline-block;
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 500;
    margin-bottom: 1rem;
}

.services-link:hover {
    opacity: 0.7;
}

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

.service-card {
    background-color: #1B3A2F;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
    text-align: left;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.book-now-container {
    text-align: center;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    text-align: center;
}

.about-image {
    margin: 3rem 0;
    padding: 2px;
    background-color: var(--text-dark);
}

.testimonial-quote {
    max-width: 700px;
    margin: 3rem auto 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-medium);
}

.testimonial-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

/* Trial Section */
.trial-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

/* Service Page Styles */
.service-page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background-color: var(--background-white);
}

.service-intro {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.photo-section {
    padding: 2rem 0;
    background-color: var(--background-white);
}

.photo-section .container {
    padding: 2px;
    background-color: var(--text-dark);
}

.service-detail-section {
    padding: var(--section-padding);
    background-color: var(--background-white);
}

.service-detail-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.service-detail-section h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-section h3:first-of-type {
    margin-top: 0;
}

.service-detail-section p {
    color: var(--text-dark);
}

.cta-section {
    padding: var(--section-padding);
    background-color: var(--background-white);
}

.cta-section h2 {
    color: var(--text-dark);
}

.cta-section p {
    color: var(--text-medium);
}

.trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trial-image-wrapper {
    padding: 2px;
    background-color: var(--text-dark);
}

.trial-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trial-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.trial-text p {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #1B3A2F;
    color: var(--text-dark);
    padding: 3rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--text-medium);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-btn:hover {
    background-color: var(--text-dark);
    color: #1B3A2F;
}

.contact-btn.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.contact-btn.whatsapp:hover {
    background-color: #25D366;
    color: #1B3A2F;
}

.contact-btn.instagram {
    border-color: #E4405F;
    color: #E4405F;
}

.contact-btn.instagram:hover {
    background-color: #E4405F;
    color: #1B3A2F;
}

.contact-btn.reviews {
    border-color: #4285F4;
    color: #4285F4;
}

.contact-btn.reviews:hover {
    background-color: #4285F4;
    color: #1B3A2F;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1.2rem;
    }

    .emphasis-text {
        font-size: 1.2rem;
    }

    .hero-img {
        height: 400px;
    }

    .full-width-img {
        height: 300px;
    }

    .primary-headline {
        padding: 2rem 0;
    }

    .service-section {
        padding: 3rem 0;
    }

    .features-section {
        padding: 3rem 0;
    }

    .services-overview {
        padding: 3rem 0;
    }

    .about-section {
        padding: 3rem 0;
    }

    .trial-section {
        padding: 3rem 0;
    }

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

    .trial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trial-image {
        height: 250px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-img {
        height: 300px;
    }

    .full-width-img {
        height: 250px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Placeholder for missing images */
img[src="images/hero-dog.jpg"],
img[src="images/dogs-playing.jpg"],
img[src="images/dog-relaxing.jpg"],
img[src="images/daycare-service.jpg"],
img[src="images/walking-service.jpg"],
img[src="images/team-photo.jpg"],
img[src="images/gentle-care.jpg"],
img[src^="images/icon-"] {
    background-color: var(--background-light);
    border: 2px dashed var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    position: relative;
}

img[src="images/hero-dog.jpg"]:after,
img[src="images/dogs-playing.jpg"]:after,
img[src="images/dog-relaxing.jpg"]:after,
img[src="images/daycare-service.jpg"]:after,
img[src="images/walking-service.jpg"]:after,
img[src="images/team-photo.jpg"]:after,
img[src="images/gentle-care.jpg"]:after {
    content: "Image placeholder - Upload your photos here";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

img[src^="images/icon-"]:after {
    content: "Icon placeholder";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA56;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-item {
    background-color: var(--primary-color);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid var(--border-light);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.25rem;
    }
}

/* ==============================================
   BLOG STYLES
   ============================================== */

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: var(--primary-color);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.blog-card-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--accent-gold);
}

.blog-excerpt {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
}

.blog-read-more {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    transform: translateX(5px);
}

.blog-coming-soon {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-light);
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.blog-coming-soon h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-coming-soon p {
    color: var(--text-medium);
}

/* Blog Post Pages */
.blog-post-hero {
    background-color: var(--background-light);
    padding: 80px 0 40px;
    border-bottom: 3px solid var(--accent-gold);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.blog-post-content {
    padding: 60px 0;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-intro {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.blog-post-content h2 {
    margin-top: 50px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
    color: var(--text-dark);
}

.blog-post-content h3 {
    margin-top: 35px;
    color: var(--text-dark);
}

.blog-post-content h4 {
    margin-top: 25px;
    color: var(--text-medium);
}

.blog-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.blog-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.blog-list li:before {
    content: "→";
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--primary-color) 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.blog-cta-box h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-cta-box p {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
}

.cta-button-secondary:hover {
    background-color: var(--text-dark);
    color: var(--primary-color);
}

.related-articles {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.related-articles h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.related-articles a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.related-articles a:hover {
    text-decoration: underline;
}

/* Comparison Table */
.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--primary-color);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: var(--background-light);
}

/* Responsive Blog Styles */
@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-post-hero {
        padding: 50px 0 30px;
    }
    
    .blog-post-hero h1 {
        font-size: 2rem;
    }
    
    .blog-post-content {
        padding: 40px 0;
    }
    
    .blog-intro {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .blog-cta-box {
        padding: 30px 20px;
    }
    
    .cta-button-secondary {
        display: block;
        margin: 10px 0;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}


/* ==============================================
   CONTACT PAGE STYLES
   ============================================== */

.contact-main-section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-card, .contact-map-card {
    background-color: var(--primary-color);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 40px;
}

.contact-info-card h2 {
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-detail p {
    color: var(--text-medium);
    margin-bottom: 5px;
}

.contact-detail a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-buttons-large {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.map-container iframe {
    display: block;
}

.map-note {
    color: var(--text-medium);
    font-size: 0.95rem;
    text-align: center;
    margin-top: 15px;
}

.service-areas-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.service-areas-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.service-areas-section .subheading {
    text-align: center;
    margin-bottom: 50px;
}

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

.area-card {
    background-color: var(--primary-color);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.area-card h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.area-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.footer-address, .footer-phone {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-address strong, .footer-phone strong {
    color: var(--accent-gold);
}

.footer-phone a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-phone a:hover {
    color: var(--accent-gold);
}

.footer-email {
    margin-top: 10px;
}

.footer-email a {
    color: var(--text-dark);
    text-decoration: underline;
}

.footer-email a:hover {
    color: var(--accent-gold);
}

/* Responsive Contact Styles */
@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card, .contact-map-card {
        padding: 25px;
    }
    
    .contact-buttons-large {
        flex-direction: column;
    }
    
    .contact-buttons-large a {
        display: block;
        text-align: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color);
    padding: 50px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form-wrapper .subheading {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    background-color: var(--background-white);
    color: var(--text-dark);
    font-family: var(--body-font);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.contact-form button[type="submit"] {
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.form-message {
    margin-top: 1rem;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #2d5016;
    color: #90ee90;
    border: 2px solid #4a7c2a;
    display: block;
}

.form-message.error {
    background-color: #5c1a1a;
    color: #ffb3b3;
    border: 2px solid #8b2e2e;
    display: block;
}

@media screen and (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

