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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e8b4a3;
    --accent-color: #95a99c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --mobile-menu-bg: #f4f6f9;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --button-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    --button-hover-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Lora', 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 10px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Enhanced Button Styles */
.cta-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a190 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--button-shadow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d4a190 0%, #c19080 100%);
    transform: translateY(-2px);
    box-shadow: var(--button-hover-shadow);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--button-shadow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger-icon {
    width: 25px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--mobile-menu-bg);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header with Close Button */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 20px; /* Match header height */
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 1002;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.mobile-menu-close:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Mobile Menu Links */
.mobile-menu-links {
    list-style: none;
    flex-grow: 1;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.mobile-menu-links li {
    margin-bottom: 0.5rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 1.5rem;
    margin: 0 1rem;
    border-radius: 8px;
    position: relative;
}

.mobile-menu-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.mobile-menu-links a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Mobile Menu Footer with CTA Button */
.mobile-menu-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    margin-top: auto;
}

.mobile-cta-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a190 100%);
    color: var(--white) !important;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--button-shadow);
    position: relative;
    overflow: hidden;
}

.mobile-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.3s ease;
}

.mobile-cta-button:hover::before {
    left: 0;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #d4a190 0%, #c19080 100%);
    transform: translateY(-2px);
    box-shadow: var(--button-hover-shadow);
}

.mobile-cta-button:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    /* Account for fixed header */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: opacity 1s ease-in-out;
}

.hero-image.active {
    opacity: 1;
    display: block !important;
}

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

.hero-image-1 {
    animation-name: slide1;
}

.hero-image-2 {
    animation-name: slide2;
}

.hero-image-3 {
    animation-name: slide3;
}

.hero-image-4 {
    animation-name: slide4;
}

/* Slideshow animations - each image shows for 4 seconds */
@keyframes slide1 {
    0% {
        opacity: 1;
    }

    18.75% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide2 {
    0% {
        opacity: 0;
    }

    18.75% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    43.75% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide3 {
    0% {
        opacity: 0;
    }

    43.75% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    68.75% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide4 {
    0% {
        opacity: 0;
    }

    68.75% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    93.75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 90%;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

/* For high DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Services Section - Reduced padding */
.services {
    padding: 40px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem auto;
}

.service-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: opacity(0.85);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    filter: opacity(1);
}

/* Services grid and progressive reveal */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

/* Enhanced See More Services Button */
.see-more-services-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a190 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--button-shadow);
    position: relative;
    overflow: hidden;
}

.see-more-services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.3s ease;
}

.see-more-services-btn:hover::before {
    left: 0;
}

.see-more-services-btn:hover {
    background: linear-gradient(135deg, #d4a190 0%, #c19080 100%);
    transform: translateY(-2px);
    box-shadow: var(--button-hover-shadow);
}

.see-more-services-btn:active {
    transform: translateY(0);
    box-shadow: var(--button-shadow);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.see-more-services-btn:hover .button-arrow {
    transform: translateX(3px);
}

/* Desktop: Hide third row initially, show first two rows */
@media (min-width: 769px) {
    .hidden-services {
        display: none;
    }

    .desktop-row-2 {
        display: block;
    }
}

/* Mobile: Hide second and third rows initially */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .desktop-row-2 {
        display: none;
    }

    .hidden-services {
        display: none;
    }

    .see-more-services-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section - Reduced padding */
.about {
    padding: 40px 0;
    background: var(--light-bg);
}

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

.about-image {
    width: 440px;
    height: 440px;
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credentials {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
}

/* Process Section - Reduced padding */
.process {
    padding: 40px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Portfolio Section - Reduced padding */
.portfolio {
    padding: 40px 0;
    background: var(--light-bg);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.before-after div {
    padding: 1rem;
    text-align: center;
    background: #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.portfolio-item h3 {
    padding: 1rem;
    color: var(--primary-color);
}

/* Testimonials - Horizontal Scroll - Reduced padding */
.testimonials {
    padding: 40px 0;
    background: var(--white);
}

.testimonials-scroll-container {
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    margin-top: 2rem;
}

.testimonials-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll-container::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.testimonials-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #d4a190;
}

.testimonial-scroll-grid {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    padding: 0 10px;
}

.testimonial {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    width: 320px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.testimonial::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial p {
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
    margin-top: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Scroll hint for mobile */
.scroll-hint {
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Pricing Section - Reduced padding */
.pricing {
    padding: 40px 0 20px 0;
    background: var(--light-bg);
}

.pricing-cards-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-weight: bold;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-color);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-card p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.includes-consultation {
    background: #e8f5e8;
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #2d5a2d;
    font-weight: bold;
}

.terms {
    text-align: left;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    font-style: italic;
}

.terms p {
    margin-bottom: 0.5rem;
}

/* Contact Section - Updated with New Design */
.contact {
    padding: 40px 0;
    background: var(--white);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    margin-top: -2.5rem;
}

/* Contact Hybrid Layout */
.contact-hybrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.quick-contact {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

/* Phone Header Styling */
.phone-header {
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary-color);
}

.phone-header h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.phone-header .phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.phone-header .phone-number a {
    color: var(--secondary-color);
    text-decoration: none;
}

.phone-header .phone-number a:hover {
    color: #d4a190;
}

.phone-header small {
    color: #666;
}

/* Contact Options Styling */
.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.contact-option:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-option-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-option-text strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

/* Service Area Styling */
.service-area {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Contact Form Styling */
.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

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

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

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 163, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a190 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--button-shadow);
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, #d4a190 0%, #c19080 100%);
    transform: translateY(-2px);
    box-shadow: var(--button-hover-shadow);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: var(--button-shadow);
}

/* Privacy Disclaimer */
.privacy-disclaimer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
    text-align: center;
}

/* FAQ Section - Reduced padding */
.faq {
    padding: 40px 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* For footer usage */
.social-links a {
    color: var(--white);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .pricing-cards-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 60px;
        max-width: 220px;
    }

    .hero {
        min-height: 500px;
        max-height: 600px;
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

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

    .about-image {
        width: 360px;
        height: 360px;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobile contact section adjustments */
    .contact-hybrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-header .phone-number {
        font-size: 1.3rem;
    }

    /* Mobile testimonials adjustments */
    .testimonial {
        width: 280px;
    }

    .testimonials-scroll-container {
        margin: 0 -20px;
        padding: 0 20px 1rem 20px;
    }

    .scroll-hint {
        display: block;
    }

    /* Mobile pricing adjustments */
    .pricing-cards-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.2rem;
    }

    .pricing-card h3 {
        font-size: 1rem;
    }

    .pricing-card p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        max-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .about-image {
        width: 290px;
        height: 290px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Contact form adjustments for very small screens */
    .contact-form {
        padding: 1.5rem;
    }

    .quick-contact {
        padding: 1.5rem;
    }

    .phone-header .phone-number {
        font-size: 1.2rem;
    }

    /* Smaller testimonial cards on very small screens */
    .testimonial {
        width: 250px;
        padding: 1.2rem;
    }

    /* Single column for pricing on very small screens */
    .pricing-cards-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .pricing-card h3 {
        font-size: 0.95rem;
    }

    .pricing-card p {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .includes-consultation {
        font-size: 0.7rem;
        padding: 0.4rem;
    }

    .pricing-card.featured::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    /* Mobile menu adjustments for very small screens */
    .mobile-menu {
        width: 80%;
        max-width: 280px;
    }

    .mobile-menu-links a {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .mobile-cta-button {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .hero-image {
        animation: none;
    }

    .hero-image-1 {
        opacity: 1;
    }

    .testimonials-scroll-container {
        scroll-behavior: auto;
    }

    .testimonial {
        transition: none;
    }

    .pricing-card {
        transition: none;
    }

    .service-icon img {
        transition: none;
    }

    .mobile-menu {
        transition: none;
    }

    .mobile-menu-overlay {
        transition: none;
    }

    .hamburger-icon,
    .hamburger-icon span {
        transition: none;
    }

    .mobile-menu-links a {
        transition: none;
    }

    .mobile-cta-button {
        transition: none;
    }

    .mobile-menu-close {
        transition: none;
    }

    .cta-button,
    .see-more-services-btn,
    .submit-button {
        transition: none;
    }

    .cta-button::before,
    .see-more-services-btn::before,
    .mobile-cta-button::before {
        transition: none;
    }

    .contact-option {
        transition: none;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.testimonials-scroll-container:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.service-icon img:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.mobile-menu-links a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.cta-button:focus,
.see-more-services-btn:focus,
.submit-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-option:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

.phone-header .phone-number a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Ensure mobile menu is accessible */
@media (max-width: 768px) {
    .mobile-menu-btn[aria-expanded="true"]+.mobile-menu {
        display: block;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hamburger-icon span {
        background: currentColor;
    }

    .mobile-menu {
        border: 1px solid currentColor;
    }

    .mobile-menu-close {
        border: 1px solid currentColor;
    }

    .cta-button,
    .see-more-services-btn,
    .mobile-cta-button,
    .submit-button {
        border: 1px solid currentColor;
    }

    .contact-option {
        border: 1px solid currentColor;
    }

    .phone-header {
        border: 2px solid currentColor;
    }
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #999;
    opacity: 0.7;
}

/* For better browser support */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
    opacity: 0.7;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
    opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
    opacity: 0.7;
}