/* ============================================
   MURUGAN SEPTIC TANK SERVICE - MODERN REDESIGN
   ============================================ */

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

:root {
    --primary-color: #224B37;
    --accent-color: #9C7A54;
    --bg-color: #F4F1EA;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(34, 75, 55, 0.08);
    --shadow-md: 0 4px 16px rgba(34, 75, 55, 0.12);
    --shadow-lg: 0 8px 32px rgba(34, 75, 55, 0.16);
    --shadow-xl: 0 12px 48px rgba(34, 75, 55, 0.2);
    --gradient-primary: linear-gradient(135deg, #224B37 0%, #163025 100%);
    --gradient-accent: linear-gradient(135deg, #9C7A54 0%, #7d6243 100%);
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(34, 75, 55, 0.08);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text span {
    color: var(--accent-color);
    position: relative;
}

.logo-text span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0.3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.375rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Modern Hero Section */
.hero {
    background: var(--gradient-primary);
    background-image: url('images/WhatsApp Image 2025-12-03 at 18.18.27_8977f578.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 7rem 2rem 5.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 75, 55, 0.4) 0%, rgba(22, 48, 37, 0.5) 100%);
    z-index: 0;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Modern Buttons */
.btn {
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span, .btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(156, 122, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 122, 84, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Container & Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 2rem auto 0;
    color: var(--text-light);
}

/* Modern Intro Section */
.intro {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-color) 100%);
    padding: 6rem 2rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Modern Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(34, 75, 55, 0.08);
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.2);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-icon i {
    font-size: 3.5rem;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg);
}

.highlight-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.highlight-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modern CTA Banner */
.cta-banner {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: movePattern 15s linear infinite;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner h3 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 75, 55, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 122, 84, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.2);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin: 1.5rem 2.5rem 1rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    margin: 0 2.5rem 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.service-card p {
    margin: 0 2.5rem 1.5rem;
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-card .read-more {
    margin: 0 2.5rem 2.5rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--primary-color);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(34, 75, 55, 0.95), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-caption strong {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(34, 75, 55, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

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

/* Modern Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(34, 75, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.2);
}

.why-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-icon i {
    font-size: 3.5rem;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modern Service Areas */
.service-areas {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(34, 75, 55, 0.08);
}

.service-areas h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-tag {
    background: var(--bg-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1rem;
}

.area-tag:hover {
    background: var(--gradient-accent);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Service Video Section */
.service-video-wrapper {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(34, 75, 55, 0.08);
}

.service-video-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-video-header h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-video-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.service-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--primary-color);
    aspect-ratio: 16/9;
}

.service-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
    outline: none;
}

.service-video:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Modern Contact Section */
.contact-section-modern {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-color) 50%, var(--white) 100%);
    padding: 6rem 2rem;
    position: relative;
}

.contact-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 75, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(156, 122, 84, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-hero-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-methods-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Modern Contact Cards Grid */
.contact-cards-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 75, 55, 0.08);
    display: flex;
    flex-direction: column;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.25);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 75, 55, 0.1) 0%, rgba(156, 122, 84, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

.contact-card-modern:hover .contact-card-icon-wrapper {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
}

.contact-card-modern:hover .contact-card-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

.contact-card-icon-wrapper.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(32, 186, 90, 0.1) 100%);
}

.contact-card-icon-wrapper.whatsapp-icon i {
    color: #25D366;
}

.whatsapp-card:hover .contact-card-icon-wrapper.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
}

.contact-badge {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(156, 122, 84, 0.3);
}

.contact-card-modern h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.contact-card-modern p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
    background: var(--bg-color);
}

.contact-link-modern i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-link-modern:hover {
    color: var(--accent-color);
    background: rgba(156, 122, 84, 0.1);
    transform: translateX(5px);
}

.contact-address-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: var(--bg-color);
}

.contact-address-modern i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-contact {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(156, 122, 84, 0.25);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 122, 84, 0.35);
}

.btn-contact i {
    font-size: 1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary-contact {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid rgba(34, 75, 55, 0.15);
    box-shadow: 0 2px 8px rgba(34, 75, 55, 0.1);
}

.btn-secondary-contact:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(34, 75, 55, 0.2);
}

/* Modern Working Hours */
.working-hours-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(34, 75, 55, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.working-hours-modern:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.2);
}

.working-hours-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-color);
}

.working-hours-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(34, 75, 55, 0.2);
}

.working-hours-icon-modern i {
    font-size: 2rem;
    color: var(--white);
}

.working-hours-header h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.working-hours-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.working-hours-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(156, 122, 84, 0.1);
    transform: translateX(5px);
}

.hours-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hours-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.working-hours-note {
    text-align: center;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-color);
}

/* Modern Map Wrapper */
.contact-map-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(34, 75, 55, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.map-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(34, 75, 55, 0.03) 0%, rgba(156, 122, 84, 0.03) 100%);
    border-bottom: 1px solid rgba(34, 75, 55, 0.08);
}

.map-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.map-header h3 i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.map-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.map-container-modern {
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

.btn-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-map-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
}

.btn-map-link i {
    font-size: 1rem;
}

/* Legacy contact card styles (for backward compatibility) */
.contact-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 75, 55, 0.08);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(156, 122, 84, 0.2);
}

.contact-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-color);
}

.contact-card-icon i {
    font-size: 4rem;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-address {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Modern Working Hours Card */
.working-hours-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.working-hours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

.working-hours-card > * {
    position: relative;
    z-index: 1;
}

.working-hours-icon {
    font-size: 5rem;
    min-width: 100px;
    text-align: center;
    color: var(--white);
}

.working-hours-icon i {
    font-size: 5rem;
}

.working-hours-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.working-hours-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.working-hours-content strong {
    color: var(--white);
    font-weight: 700;
}

/* Modern Map Wrapper */
.map-wrapper {
    margin-top: 3rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(34, 75, 55, 0.1);
}

.map-container:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Modern Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.floating-btn:hover::before {
    width: 100px;
    height: 100px;
}

.floating-btn i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn.call {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
}

/* Modern Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0 2rem 0;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-top-wave {
    height: 60px;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-color) 50%, transparent 100%);
    position: relative;
    margin-bottom: 3rem;
}

.footer-top-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.footer-logo-underline {
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

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

.trust-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(156, 122, 84, 0.4);
}

.social-link.whatsapp-social:hover {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 6px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 0.75rem;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(156, 122, 84, 0.3);
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(156, 122, 84, 0.3);
}

.footer-contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-contact-value:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.footer-bottom-content strong {
    color: var(--white);
    font-weight: 700;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-bottom a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        position: static;
        margin-top: 2rem;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-highlights,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .working-hours-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .working-hours-icon {
        min-width: auto;
    }
}

/* Mobile Landscape and Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero {
        padding: 5rem 1.25rem 3.5rem;
        min-height: 65vh;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    h1 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }

    .section {
        padding: 4rem 1.25rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }

    .section-title p {
        font-size: 1rem;
    }

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

    .intro-image {
        transform: none;
    }

    .service-highlights,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section-modern {
        padding: 4rem 1.25rem;
    }

    .contact-hero {
        margin-bottom: 3rem;
    }

    .contact-hero-content h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .contact-main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-cards-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-card-modern {
        padding: 1.75rem;
    }

    .contact-map-wrapper {
        position: static;
        margin-top: 2rem;
    }

    .map-container-modern {
        height: 400px;
    }

    .working-hours-modern {
        padding: 2rem 1.5rem;
    }

    .working-hours-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .working-hours-icon-modern {
        margin: 0 auto;
    }

    .footer {
        padding: 0 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 0;
    }

    .footer-top-wave {
        height: 40px;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.35rem;
    }

    .footer-trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-badge {
        flex: 1;
        min-width: 140px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact-item {
        padding: 0.875rem;
    }

    .footer-contact-icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact-icon i {
        font-size: 1rem;
    }

    .cta-banner {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }

    .cta-banner h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .cta-banner p {
        font-size: 1.1rem;
    }

    .service-areas {
        padding: 3rem 2rem;
    }

    .areas-list {
        gap: 0.75rem;
    }

    .area-tag {
        padding: 0.625rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-video-wrapper {
        margin-top: 3rem;
        padding: 2.5rem 2rem;
    }

    .service-video-header h3 {
        font-size: 1.75rem;
    }

    .service-video-header p {
        font-size: 1rem;
    }

    .floating-buttons {
        bottom: 1.25rem;
        right: 1.25rem;
        gap: 0.875rem;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
}

/* Mobile Portrait (480px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 36px;
    }

    .hero {
        padding: 4.5rem 1rem 3rem;
        min-height: 60vh;
    }

    .section {
        padding: 3.5rem 1rem;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .service-card,
    .highlight-card,
    .why-card,
    .contact-card-modern {
        padding: 0;
    }

    .service-image {
        height: 180px;
    }

    .service-icon {
        margin: 1.25rem 1.5rem 0.75rem;
    }

    .service-card h3 {
        margin: 0 1.5rem 0.75rem;
    }

    .service-card p {
        margin: 0 1.5rem 1.25rem;
    }

    .service-card .read-more {
        margin: 0 1.5rem 1.5rem;
    }

    .service-icon,
    .highlight-icon,
    .why-icon {
        font-size: 2.5rem;
    }

    .service-icon i,
    .highlight-icon i,
    .why-icon i {
        font-size: 2.5rem;
    }

    .contact-card-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-card-icon-wrapper i {
        font-size: 1.5rem;
    }

    .contact-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .gallery-item {
        aspect-ratio: 3/2;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .working-hours-modern {
        padding: 1.75rem 1.25rem;
    }

    .hours-item {
        padding: 0.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer {
        padding: 0 1rem;
    }

    .footer-content {
        gap: 2rem;
        padding: 2rem 0;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        width: 100%;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .social-link i {
        font-size: 1.2rem;
    }

    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-contact-icon {
        margin: 0 auto;
    }

    .footer-bottom-content {
        padding: 0 1rem;
    }

    .footer-bottom-content p {
        font-size: 0.875rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .map-container-modern {
        height: 350px;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 0.875rem;
    }

    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 32px;
    }

    .hamburger span {
        width: 24px;
    }

    .hero {
        padding: 4rem 1rem 2.5rem;
        min-height: 55vh;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title h2::after {
        width: 40px;
        height: 3px;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.875rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .intro-text h2 {
        font-size: 1.5rem;
    }

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

    .service-card,
    .highlight-card,
    .why-card,
    .contact-card-modern {
        padding: 0;
    }

    .service-image {
        height: 160px;
    }

    .service-icon {
        margin: 1rem 1.25rem 0.75rem;
    }

    .service-card h3 {
        margin: 0 1.25rem 0.75rem;
        font-size: 1.2rem;
    }

    .service-card p {
        margin: 0 1.25rem 1rem;
        font-size: 0.95rem;
    }

    .service-card .read-more {
        margin: 0 1.25rem 1.25rem;
    }

    .service-card h3,
    .highlight-card h3,
    .why-card h3 {
        font-size: 1.2rem;
    }

    .service-card p,
    .highlight-card p,
    .why-card p {
        font-size: 0.95rem;
    }

    .service-icon,
    .highlight-icon,
    .why-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .service-icon i,
    .highlight-icon i,
    .why-icon i {
        font-size: 2.25rem;
    }

    .contact-section-modern {
        padding: 3rem 1rem;
    }

    .contact-hero-content h2 {
        font-size: 1.75rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-card-modern {
        padding: 1.5rem;
    }

    .contact-card-header {
        margin-bottom: 1.25rem;
    }

    .contact-card-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .contact-card-icon-wrapper i {
        font-size: 1.35rem;
    }

    .contact-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .contact-link-modern {
        padding: 0.625rem;
        font-size: 0.95rem;
    }

    .btn-contact {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .working-hours-modern {
        padding: 1.5rem 1rem;
    }

    .working-hours-icon-modern {
        width: 60px;
        height: 60px;
    }

    .working-hours-icon-modern i {
        font-size: 1.75rem;
    }

    .working-hours-header h3 {
        font-size: 1.35rem;
    }

    .map-container-modern {
        height: 300px;
    }

    .map-header {
        padding: 1.5rem 1.25rem 1rem;
    }

    .map-header h3 {
        font-size: 1.25rem;
    }

    .btn-map-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-caption {
        padding: 1.5rem 1rem 1rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-stars {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .service-areas {
        padding: 2rem 1.5rem;
    }

    .service-areas h3 {
        font-size: 1.5rem;
    }

    .area-tag {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .service-video-wrapper {
        margin-top: 2.5rem;
        padding: 2rem 1.5rem;
    }

    .service-video-header {
        margin-bottom: 2rem;
    }

    .service-video-header h3 {
        font-size: 1.5rem;
    }

    .service-video-header p {
        font-size: 0.95rem;
    }

    .cta-banner {
        padding: 2rem 1.25rem;
        margin: 2.5rem 0;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .footer {
        padding: 0 1rem;
    }

    .footer-top-wave {
        height: 30px;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        padding: 2rem 0;
    }

    .footer-logo h3 {
        font-size: 1.35rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .footer-about p {
        font-size: 0.95rem;
    }

    .trust-badge {
        padding: 0.625rem 0.875rem;
    }

    .trust-badge i {
        font-size: 1.1rem;
    }

    .trust-badge span {
        font-size: 0.85rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .social-link i {
        font-size: 1.1rem;
    }

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

    .footer-contact-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .footer-contact-icon {
        width: 38px;
        height: 38px;
    }

    .footer-contact-icon i {
        font-size: 0.95rem;
    }

    .footer-contact-label {
        font-size: 0.75rem;
    }

    .footer-contact-value {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        gap: 0.75rem;
    }

    .footer-bottom-content p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-credits {
        font-size: 0.8rem !important;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-btn i {
        font-size: 1.2rem;
    }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.875rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.15rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Option to show only logo on very small screens - uncomment if needed */
    /* 
    .logo-text {
        display: none;
    }
    */

    .hero {
        padding: 3.5rem 0.875rem 2rem;
    }

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

    .section {
        padding: 2.5rem 0.875rem;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .service-card,
    .highlight-card,
    .why-card,
    .contact-card-modern {
        padding: 0;
    }

    .service-image {
        height: 150px;
    }

    .service-icon {
        margin: 1rem 1.25rem 0.75rem;
    }

    .service-card h3 {
        margin: 0 1.25rem 0.75rem;
        font-size: 1.15rem;
    }

    .service-card p {
        margin: 0 1.25rem 1rem;
        font-size: 0.95rem;
    }

    .service-card .read-more {
        margin: 0 1.25rem 1.25rem;
    }

    .contact-card-modern h3 {
        font-size: 1.15rem;
    }

    .footer {
        padding: 0 0.875rem;
    }

    .footer-content {
        gap: 1.75rem;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 1.5rem 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-contact,
    .btn-map-link,
    .social-link,
    .floating-btn,
    .nav-link,
    .footer-links a,
    .contact-link-modern {
        -webkit-tap-highlight-color: rgba(156, 122, 84, 0.2);
        tap-highlight-color: rgba(156, 122, 84, 0.2);
    }

    .service-card:hover,
    .highlight-card:hover,
    .why-card:hover,
    .contact-card-modern:hover,
    .gallery-item:hover {
        transform: none;
    }

    .service-card:active,
    .highlight-card:active,
    .why-card:active,
    .contact-card-modern:active {
        transform: scale(0.98);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .section-title h2,
    .hero h1 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero::before,
    .cta-banner::before,
    .working-hours-card::before {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-buttons,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }

    .btn,
    .btn-contact {
        border: 1px solid #000;
        color: #000;
        background: transparent;
    }
}
