/*
Theme Name:Theme 202
Theme URI:http://www.dreamtemplate.com/
Description:The original WordPress theme that graced versions 3.0.x and prior.
Version:1.0
Author:DreamTemplate
*/ 
/*=== Setup ===*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #1a1a1a;
	--secondary-color: #666666;
	--accent-color: #3b82f6;
	--text-color: #374151;
	--text-light: #6b7280;
	--border-color: #e5e7eb;
	--bg-light: #f9fafb;
	--white: #ffffff;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--radius: 8px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-color);
	background: var(--white);
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	color: var(--primary-color);
}

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

/* Header */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	padding: 16px 0;
}

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

.logo img {
	height: 40px;
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-color);
	text-decoration: none;
	transition: var(--transition);
	position: relative;
}

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

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-color);
}

.cta-button {
	background: var(--accent-color) !important;
	color: var(--white) !important;
	padding: 10px 20px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
}

.cta-button:hover {
	background: #2563eb !important;
	transform: translateY(-1px);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	margin: 3px 0;
	transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Desktop-specific improvements */
@media (min-width: 1024px) {
    .hero-slide {
        background-size: cover;
        background-position: center 20%;
        transform: scale(1.06);
    }
    
    .hero-slide.active {
        transform: scale(1);
    }
    
    .hero-slide-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.35) 100%
        );
    }
    
    /* Grainy Film Effect for Desktop */
    .hero-slide-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
        background-size: 200px 200px, 150px 150px, 100px 100px;
        animation: grain 8s steps(10) infinite;
        z-index: 2;
        pointer-events: none;
    }
    
    /* Film Color Grading */
    .hero-slide-overlay::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
            linear-gradient(-45deg, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
        z-index: 3;
        pointer-events: none;
    }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(-15%, 0%); }
    90% { transform: translate(10%, 5%); }
}

/* Hero Text Slideshow */
.hero-text-slideshow {
    display: none; /* Hide in desktop by default */
}

@media (max-width: 768px) {
    .hero-text-slideshow {
        display: flex; /* Show in mobile */
        position: relative;
        height: auto;
        min-height: 140px;
    }

    .hero-text-slide {
        position: relative;
        text-align: left;
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .hero-text-slide .hero-title {
        text-align: left;
        font-size: 28px;
        white-space: normal;
    }
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    text-align: center;
}

.hero-text-slide.active {
    display: flex;
    opacity: 1;
}

.hero-text-slide .hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    overflow: visible;
    text-align: center;
    max-width: 800px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        position: relative;
    }

    .hero-slideshow {
        position: relative;
        width: 100%;
        height: 60vh;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
}

@media (max-width: 480px) {
    .hero-slideshow {
        height: 50vh;
    }
}

.hero-subtitle {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 32px;
	line-height: 1.6;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Navigation Dots */
/* .hero-nav-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 16px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 12px 20px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.nav-dot.active {
	background: #ffffff;
	border-color: #ffffff;
	transform: scale(1.2);
}

.nav-dot:hover {
	background: rgba(255, 255, 255, 0.8);
	border-color: #ffffff;
} */

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	height: 40%;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.3) 60%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 180px; /* Increased from default to move content down */
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-top: 40px; /* Added padding to move content down further */
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(59, 130, 246, 0.15);
	color: var(--accent-color);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 24px;
	border: 1px solid rgba(59, 130, 246, 0.3);
	backdrop-filter: blur(10px);
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-title {
	font-size: 36px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 24px;
	color: var(--primary-color);
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 32px;
	line-height: 1.6;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	font-family: 'Poppins', sans-serif;
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-light);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.btn-primary {
	background: var(--accent-color);
	color: var(--white);
	padding: 14px 28px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
}

.btn-primary:hover {
	background: #2563eb;
	transform: translateY(-1px);
	color: var(--white);
}

.btn-secondary {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.95);
	color: #2563eb;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	opacity: 1 !important;
	visibility: visible !important;
	position: relative;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	text-shadow: none;
}

.btn-secondary:hover {
	background: #2563eb;
	color: white;
	transform: translateY(-2px);
	opacity: 1 !important;
	visibility: visible !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary i {
	color: #2563eb;
	font-size: 14px;
	transition: color 0.3s ease;
}

.btn-secondary:hover i {
	color: white;
}

.trust-badges {
	display: flex;
	gap: 24px;
	margin-top: 32px;
}

.badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-color);
	background: rgba(255, 255, 255, 0.95);
	padding: 8px 16px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-shadow: none;
	transition: var(--transition);
}

.badge:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-1px);
}

.badge i {
	color: var(--accent-color);
	font-size: 14px;
}

.badge span {
	font-weight: 600;
	color: var(--primary-color);
	text-shadow: none;
}

.hero-visual {
	position: relative;
	z-index: 2;
}

/* Enhanced Image Stack with Animations */
.image-stack {
    position: absolute;
    top: 0;
    right: -120px;
    width: 300px;
    height: 100%;
    z-index: 3;
}

.image-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    opacity: 0;
    animation: fadeInStack 0.8s ease-out forwards;
}

.image-1 {
    width: 220px;
    height: 150px;
    top: 20px;
    right: 0;
    transform: rotate(-8deg) translateZ(0);
    z-index: 1;
    animation-delay: 0.1s;
}

.image-2 {
    width: 200px;
    height: 140px;
    top: 80px;
    right: 40px;
    transform: rotate(6deg) translateZ(0);
    z-index: 2;
    animation-delay: 0.2s;
}

.image-3 {
    width: 240px;
    height: 160px;
    top: 160px;
    right: 0;
    transform: rotate(-4deg) translateZ(0);
    z-index: 3;
    animation-delay: 0.3s;
}

.image-4 {
    width: 220px;
    height: 150px;
    top: 240px;
    right: 40px;
    transform: rotate(8deg) translateZ(0);
    z-index: 4;
    animation-delay: 0.4s;
}

.image-5 {
    width: 200px;
    height: 140px;
    top: 320px;
    right: 0;
    transform: rotate(-6deg) translateZ(0);
    z-index: 5;
    animation-delay: 0.5s;
}

.image-6 {
    width: 240px;
    height: 160px;
    top: 400px;
    right: 40px;
    transform: rotate(4deg) translateZ(0);
    z-index: 6;
    animation-delay: 0.6s;
}

.image-7 {
    width: 220px;
    height: 150px;
    top: 480px;
    right: 0;
    transform: rotate(-8deg) translateZ(0);
    z-index: 7;
    animation-delay: 0.7s;
}

.image-8 {
    width: 200px;
    height: 140px;
    top: 560px;
    right: 40px;
    transform: rotate(6deg) translateZ(0);
    z-index: 8;
    animation-delay: 0.8s;
}

.image-9 {
    width: 240px;
    height: 160px;
    top: 640px;
    right: 0;
    transform: rotate(-4deg) translateZ(0);
    z-index: 9;
    animation-delay: 0.9s;
}

@media (max-width: 1024px) {
    .image-stack {
        right: -100px;
    }
}

@media (max-width: 768px) {
    .image-stack {
        right: -80px;
    }
    
    .image-card {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .image-stack {
        right: -60px;
    }
    
    .image-card {
        transform: scale(0.6);
    }
}

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

.image-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.image-card::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--accent-color), #60a5fa, var(--accent-color));
	border-radius: 18px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.image-card:hover {
	transform: translateY(-12px) rotateY(5deg) rotateX(5deg) scale(1.08);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 16px 48px rgba(59, 130, 246, 0.15);
	z-index: 20;
}

.image-card:hover::before {
	opacity: 1;
}

.image-card:hover::after {
	opacity: 1;
}

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

/* Diagonal Flow from Top Right to Bottom Middle */
.image-1 {
	width: 220px;
	height: 150px;
	top: 20px;
	right: -20px;
	transform: rotate(-8deg) translateZ(0);
	z-index: 1;
	animation-delay: 0.1s;
}

.image-1:hover {
	transform: rotate(-4deg) translateY(-12px) rotateY(-8deg) rotateX(3deg) scale(1.08);
}

.image-2 {
	width: 200px;
	height: 140px;
	top: 80px;
	right: 140px;
	transform: rotate(6deg) translateZ(0);
	z-index: 2;
	animation-delay: 0.2s;
}

.image-2:hover {
	transform: rotate(2deg) translateY(-12px) rotateY(5deg) rotateX(-2deg) scale(1.08);
}

.image-3 {
	width: 240px;
	height: 160px;
	top: 160px;
	right: 0px;
	transform: rotate(-4deg) translateZ(0);
	z-index: 3;
	animation-delay: 0.3s;
}

.image-3:hover {
	transform: rotate(-1deg) translateY(-12px) rotateY(-3deg) rotateX(4deg) scale(1.08);
}

.image-4 {
	width: 180px;
	height: 130px;
	top: 220px;
	right: 180px;
	transform: rotate(10deg) translateZ(0);
	z-index: 4;
	animation-delay: 0.4s;
}

.image-4:hover {
	transform: rotate(6deg) translateY(-12px) rotateY(8deg) rotateX(-3deg) scale(1.08);
}

.image-5 {
	width: 200px;
	height: 140px;
	top: 300px;
	right: 60px;
	transform: rotate(-6deg) translateZ(0);
	z-index: 5;
	animation-delay: 0.5s;
}

.image-5:hover {
	transform: rotate(-2deg) translateY(-12px) rotateY(-5deg) rotateX(2deg) scale(1.08);
}

.image-6 {
	width: 170px;
	height: 120px;
	top: 380px;
	right: 220px;
	transform: rotate(8deg) translateZ(0);
	z-index: 6;
	animation-delay: 0.6s;
}

.image-6:hover {
	transform: rotate(4deg) translateY(-12px) rotateY(6deg) rotateX(-4deg) scale(1.08);
}

.image-7 {
	width: 190px;
	height: 130px;
	top: 460px;
	right: 110px;
	transform: rotate(-5deg) translateZ(0);
	z-index: 7;
	animation-delay: 0.7s;
}

.image-7:hover {
	transform: rotate(-1deg) translateY(-12px) rotateY(-4deg) rotateX(3deg) scale(1.08);
}

.image-8 {
	width: 160px;
	height: 110px;
	top: 120px;
	right: 280px;
	transform: rotate(12deg) translateZ(0);
	z-index: 8;
	animation-delay: 0.8s;
}

.image-8:hover {
	transform: rotate(8deg) translateY(-12px) rotateY(10deg) rotateX(-2deg) scale(1.08);
}

.image-9 {
	width: 150px;
	height: 100px;
	top: 350px;
	right: -20px;
	transform: rotate(-10deg) translateZ(0);
	z-index: 9;
	animation-delay: 0.9s;
}

.image-9:hover {
	transform: rotate(-6deg) translateY(-12px) rotateY(-8deg) rotateX(5deg) scale(1.08);
}

/* Keyframe Animations */
@keyframes fadeInStack {
	0% {
		opacity: 0;
		transform: translateY(40px) rotate(var(--initial-rotation, 0deg)) scale(0.8);
	}
	100% {
		opacity: 1;
		transform: translateY(0) rotate(var(--initial-rotation, 0deg)) scale(1);
	}
}

@keyframes floatUp {
	0%, 100% { transform: translateY(0) rotate(var(--initial-rotation, 0deg)); }
	50% { transform: translateY(-8px) rotate(var(--initial-rotation, 0deg)); }
}

@keyframes floatDown {
	0%, 100% { transform: translateY(0) rotate(var(--initial-rotation, 0deg)); }
	50% { transform: translateY(8px) rotate(var(--initial-rotation, 0deg)); }
}

@keyframes floatSide {
	0%, 100% { transform: translateX(0) rotate(var(--initial-rotation, 0deg)); }
	50% { transform: translateX(6px) rotate(var(--initial-rotation, 0deg)); }
}

/* Subtle Floating Animations */
.image-1 {
	animation: fadeInStack 0.8s ease-out 0.1s forwards, floatUp 4s ease-in-out 1s infinite;
	--initial-rotation: -8deg;
}

.image-2 {
	animation: fadeInStack 0.8s ease-out 0.2s forwards, floatDown 5s ease-in-out 1.5s infinite;
	--initial-rotation: 6deg;
}

.image-3 {
	animation: fadeInStack 0.8s ease-out 0.3s forwards, floatSide 6s ease-in-out 2s infinite;
	--initial-rotation: -4deg;
}

.image-4 {
	animation: fadeInStack 0.8s ease-out 0.4s forwards, floatUp 4.5s ease-in-out 2.5s infinite;
	--initial-rotation: 10deg;
}

.image-5 {
	animation: fadeInStack 0.8s ease-out 0.5s forwards, floatDown 5.5s ease-in-out 3s infinite;
	--initial-rotation: -6deg;
}

.image-6 {
	animation: fadeInStack 0.8s ease-out 0.6s forwards, floatUp 5s ease-in-out 3.5s infinite;
	--initial-rotation: 8deg;
}

.image-7 {
	animation: fadeInStack 0.8s ease-out 0.7s forwards, floatSide 4.8s ease-in-out 4s infinite;
	--initial-rotation: -5deg;
}

.image-8 {
	animation: fadeInStack 0.8s ease-out 0.8s forwards, floatDown 5.2s ease-in-out 4.5s infinite;
	--initial-rotation: 12deg;
}

.image-9 {
	animation: fadeInStack 0.8s ease-out 0.9s forwards, floatUp 4.3s ease-in-out 5s infinite;
	--initial-rotation: -10deg;
}

/* Add subtle glow effect on hover */
.image-stack:hover .image-card:not(:hover) {
	opacity: 0.7;
	transform: scale(0.95) rotate(var(--initial-rotation, 0deg));
}

/* Enhanced shadows for depth */
.image-1 { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08); }
.image-2 { box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14), 0 8px 25px rgba(0, 0, 0, 0.1); }
.image-3 { box-shadow: 0 25px 45px rgba(0, 0, 0, 0.16), 0 10px 30px rgba(0, 0, 0, 0.12); }
.image-4 { box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15), 0 9px 28px rgba(0, 0, 0, 0.11); }
.image-5 { box-shadow: 0 28px 50px rgba(0, 0, 0, 0.18), 0 12px 35px rgba(0, 0, 0, 0.14); }

/* Page Hero Modern - Compact Version with Background Images */
.page-hero-modern {
	padding: 80px 0 50px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/the-gore-hotel.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
	color: var(--white);
	position: relative;
}

.page-hero-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 26, 26, 0.4);
	z-index: 1;
}

.page-hero-modern .container {
	position: relative;
	z-index: 2;
}

.hero-content-modern {
	max-width: 600px;
	margin: 0 auto;
}

.hero-content-modern .hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 10px;
	font-weight: 600;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.hero-content-modern h1 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 12px;
	color: var(--white);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content-modern p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content-modern .hero-stats {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 20px;
}

.hero-content-modern .stat-item {
	text-align: center;
}

.hero-content-modern .stat-number {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	font-family: 'Poppins', sans-serif;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content-modern .stat-label {
	font-size: 9px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* Different hero backgrounds for different pages */
body[data-page="services"] .page-hero-modern {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/com_img2.jpg');
}

body[data-page="plumbing"] .page-hero-modern {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/1000054910.jpg');
}

body[data-page="about"] .page-hero-modern {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/gloucester.jpg');
}

body[data-page="testimonials"] .page-hero-modern {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/kitchen_plan.jpg');
}

body[data-page="contact"] .page-hero-modern {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/slider_img_1.jpg');
}

/* Services Modern - Extra Compact */
.services-overview-modern,
.plumbing-services-modern,
.process-section-modern,
.projects-showcase-modern,
.contact-options-modern,
.contact-form-modern,
.contact-faq-modern,
.emergency-contact-modern,
.company-story-modern,
.team-section-modern,
.why-choose-modern,
.certifications-modern,
.plumbing-benefits-modern,
.plumbing-gallery-modern,
.testimonials-modern,
.review-highlights-modern,
.google-reviews-modern {
	padding: 40px 0;
}

.section-header-center {
	text-align: center;
	margin-bottom: 28px;
}

.section-header-center h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary-color);
}

.section-header-center p {
	font-size: 12px;
	color: var(--text-light);
	max-width: 400px;
	margin: 0 auto;
}

.services-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.service-card-modern {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 24px;
	border-radius: 12px;
	transition: var(--transition);
	position: relative;
}

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

.service-card-modern.featured-service {
	background: rgba(255, 255, 255, 1) !important;
	backdrop-filter: none;
	border: 2px solid var(--accent-color);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	padding: 28px;
}

.service-image-modern {
	width: 100%;
	height: 80px;
	margin-bottom: 12px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border-color);
}

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

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

.service-icon-modern {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: var(--white);
}

.service-card-modern h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary-color);
}

.service-card-modern p {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.4;
	margin-bottom: 12px;
}

.service-features {
	list-style: none;
	margin-bottom: 12px;
}

.service-features li {
	font-size: 10px;
	color: var(--text-color);
	margin-bottom: 4px;
	padding-left: 12px;
	position: relative;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: 600;
}

.service-cta {
	color: var(--accent-color);
	font-size: 10px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	transition: var(--transition);
}

.service-cta:hover {
	color: #2563eb;
}

/* Process Steps - Extra Compact */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.process-step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 36px;
	height: 36px;
	background: var(--accent-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	margin: 0 auto 12px;
}

.process-step h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--primary-color);
}

.process-step p {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.4;
}

/* Projects Grid - Extra Compact */
.projects-grid-diagonal {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}

.project-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4/3;
	transform: rotate(0deg);
	transition: var(--transition);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 24px;
}

.project-item.diagonal-1 { transform: rotate(-1deg); }
.project-item.diagonal-2 { transform: rotate(0.5deg); }
.project-item.diagonal-3 { transform: rotate(-0.5deg); }
.project-item.diagonal-4 { transform: rotate(1deg); }
.project-item.diagonal-5 { transform: rotate(-0.5deg); }

.project-item:hover {
	transform: rotate(0deg) scale(1.02);
	z-index: 10;
}

.project-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: var(--white);
	padding: 12px;
	transform: translateY(100%);
	transition: var(--transition);
}

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

.project-overlay h4 {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--white);
}

.project-overlay p {
	font-size: 10px;
	opacity: 0.9;
}

/* Contact Specific Styles - Extra Compact */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 32px;
}

.contact-method {
	text-align: center;
	padding: 20px 16px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.contact-method:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.contact-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	color: var(--white);
}

.contact-method h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--primary-color);
}

.contact-method p {
	font-size: 11px;
	color: var(--text-light);
	margin-bottom: 8px;
}

.contact-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: none;
	display: block;
	margin-bottom: 4px;
}

.contact-note {
	font-size: 9px;
	color: var(--text-light);
}

/* Form Styles - Extra Compact */
.form-content {
	max-width: 500px;
	margin: 0 auto;
}

.form-header {
	text-align: center;
	margin-bottom: 24px;
}

.form-header h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--primary-color);
}

.form-header p {
	font-size: 11px;
	color: var(--text-light);
}

.modern-contact-form {
	background: var(--white);
	padding: 24px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

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

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

.form-group label {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 11px;
	font-family: inherit;
	transition: var(--transition);
	background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11px;
	color: var(--text-color);
	cursor: pointer;
	line-height: 1.3;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.submit-btn {
	width: 100%;
	background: var(--accent-color);
	color: var(--white);
	padding: 10px;
	border: none;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.submit-btn:hover {
	background: #2563eb;
	transform: translateY(-1px);
}

/* FAQ Styles - Extra Compact */
.faq-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.faq-item-modern {
	background: var(--white);
	padding: 16px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.faq-item-modern h3 {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--primary-color);
}

.faq-item-modern p {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.4;
}

/* Emergency Assistance Banner */
.emergency-assistance-banner {
	background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-assistance-banner .emergency-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.emergency-assistance-banner .emergency-info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.emergency-assistance-banner .emergency-icon {
	color: var(--white);
	font-size: 24px;
	min-width: 24px;
}

.emergency-assistance-banner .emergency-text h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--white);
}

.emergency-assistance-banner .emergency-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.emergency-assistance-banner .btn-emergency {
	background: var(--white);
	color: #dc2626;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.emergency-assistance-banner .btn-emergency:hover {
	background: var(--bg-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.emergency-assistance-banner .emergency-content {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.emergency-assistance-banner .emergency-info {
		justify-content: center;
	}
	
	.emergency-assistance-banner .emergency-text h3 {
		font-size: 16px;
	}
	
	.emergency-assistance-banner .emergency-text p {
		font-size: 13px;
	}
}

/* Emergency Banner - Extra Compact */
.emergency-banner-modern {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	padding: 12px 0;
}

.emergency-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.emergency-icon {
	color: var(--white);
}

.emergency-text h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--white);
}

.emergency-text p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
}

.emergency-button {
	background: var(--white);
	color: #ef4444;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.emergency-button:hover {
	background: var(--bg-light);
	transform: translateY(-1px);
}

.emergency-contact-modern {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.emergency-contact-modern .emergency-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.emergency-info h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--white);
}

.emergency-info p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 12px;
}

.btn-emergency {
	background: var(--white);
	color: #ef4444;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.emergency-features {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.emergency-feature {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--white);
	font-size: 11px;
	font-weight: 500;
}

.feature-icon {
	font-size: 14px;
}

/* Benefits Grid - Extra Compact */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 24px;
	border-radius: 12px;
	text-align: center;
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.benefit-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	color: var(--white);
}

.benefit-card h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--primary-color);
}

.benefit-card p {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.4;
}

/* About Page Specific - Extra Compact */
.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.story-text h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--primary-color);
}

.story-text .lead {
	font-size: 12px;
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 12px;
	line-height: 1.5;
}

.story-text p {
	font-size: 11px;
	color: var(--text-light);
	margin-bottom: 12px;
	line-height: 1.5;
}

.company-values {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.value-item h4 {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--primary-color);
}

.value-item p {
	font-size: 11px;
	color: var(--text-light);
}

.story-image img {
	width: 100%;
	border-radius: 8px;
}

/* Team Styles - Extra Compact */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.team-member {
	background: var(--white);
	padding: 16px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	text-align: center;
	transition: var(--transition);
}

.team-member:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.member-info h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--primary-color);
}

.member-role {
	font-size: 11px;
	font-weight: 500;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.member-info p {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.4;
}

/* Certifications - Extra Compact */
.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

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

.cert-badge {
	background: var(--white);
	padding: 16px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.cert-badge:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.cert-icon {
	font-size: 20px;
	margin-bottom: 8px;
	display: block;
}

.cert-badge h4 {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--primary-color);
}

.cert-badge p {
	font-size: 10px;
	color: var(--text-light);
}

/* Testimonials - Extra Compact */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.testimonial-card {
	background: var(--white);
	padding: 16px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

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

.testimonial-card.featured {
	border: 2px solid var(--accent-color);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
}

.client-info h4 {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--primary-color);
}

.client-location {
	font-size: 10px;
	color: var(--text-light);
	margin-bottom: 2px;
}

.project-type {
	font-size: 10px;
	font-weight: 500;
	color: var(--accent-color);
}

.rating {
	text-align: right;
}

.stars {
	color: #fbbf24;
	font-size: 12px;
	display: block;
	margin-bottom: 2px;
}

.rating-text {
	font-size: 10px;
	font-weight: 600;
	color: var(--text-color);
}

.testimonial-card blockquote {
	font-size: 11px;
	color: var(--text-color);
	line-height: 1.5;
	margin-bottom: 12px;
	font-style: italic;
}

.testimonial-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 9px;
	color: var(--text-light);
	border-top: 1px solid var(--border-color);
	padding-top: 8px;
}

/* Review Highlights - Extra Compact */
.highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.highlight-item {
	text-align: center;
	background: var(--white);
	padding: 16px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.highlight-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	color: var(--white);
}

.highlight-item h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--primary-color);
}

.highlight-item p {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.4;
}

/* Google Reviews - Extra Compact */
.google-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--white);
	padding: 24px;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.google-info h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--primary-color);
}

.google-info p {
	font-size: 11px;
	color: var(--text-light);
	margin-bottom: 8px;
}

.google-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.google-stars {
	color: #fbbf24;
	font-size: 14px;
}

.google-score {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-color);
}

.review-count {
	font-size: 10px;
	color: var(--text-light);
}

.google-button {
	background: var(--accent-color);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: var(--transition);
}

.google-button:hover {
	background: #2563eb;
	transform: translateY(-1px);
}

/* Footer */
.main-footer {
	background: var(--primary-color);
	color: var(--white);
	padding: 60px 0 20px;
}

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

.footer-section h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--white);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 8px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.footer-section ul li a:hover {
	color: var(--white);
}

.footer-section p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 8px;
}

.footer-logo img {
	height: 36px;
	margin-bottom: 16px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.story-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	
	.image-stack {
		height: 400px;
	}
	
	/* Adjust image sizes for tablet */
	.image-1 {
		width: 180px;
		height: 120px;
		top: 20px;
		right: 20px;
	}
	
	.image-2 {
		width: 160px;
		height: 110px;
		top: 80px;
		right: 140px;
	}
	
	.image-3 {
		width: 200px;
		height: 130px;
		top: 140px;
		right: 30px;
	}
	
	.image-4 {
		width: 140px;
		height: 100px;
		top: 200px;
		right: 170px;
	}
	
	.image-5 {
		width: 160px;
		height: 110px;
		top: 260px;
		right: 80px;
	}
	
	.image-6 {
		width: 150px;
		height: 100px;
		top: 320px;
		right: 200px;
	}
	
	.image-7 {
		width: 140px;
		height: 95px;
		top: 380px;
		right: 120px;
	}
	
	.image-8 {
		width: 130px;
		height: 90px;
		top: 100px;
		right: 250px;
	}
	
	.image-9 {
		width: 120px;
		height: 85px;
		top: 300px;
		right: 10px;
	}
	
	/* Compact services grid on tablets */
	.services-grid {
		padding: 60px 0;
	}
	
	.services-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
		margin-top: 32px;
	}
	
	.service-card {
		padding: 20px 16px;
	}
	
	.section-header {
		margin-bottom: 36px;
		max-width: 100%;
	}
	
	.section-header h2 {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.hero-title,
	.hero-content-modern h1 {
		font-size: 28px;
	}
	
	.hero-stats,
	.hero-content-modern .hero-stats {
		gap: 24px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.services-grid-modern {
		grid-template-columns: 1fr;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.emergency-content {
		flex-direction: column;
		text-align: center;
	}
	
	.google-header {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}
	
	.container {
		padding: 0 16px;
	}
	
	.nav-container {
		padding: 0 12px;
	}
	
	.hero-visual {
		order: -1;
	}
	
	.image-stack {
		height: 300px;
		margin-bottom: 20px;
	}
	
	/* Adjust image sizes for tablet */
	.image-1 {
		width: 180px;
		height: 120px;
		top: 20px;
		right: 20px;
	}
	
	.image-2 {
		width: 160px;
		height: 110px;
		top: 80px;
		right: 140px;
	}
	
	.image-3 {
		width: 200px;
		height: 130px;
		top: 140px;
		right: 30px;
	}
	
	.image-4 {
		width: 140px;
		height: 100px;
		top: 200px;
		right: 170px;
	}
	
	.image-5 {
		width: 160px;
		height: 110px;
		top: 260px;
		right: 80px;
	}
	
	.image-6 {
		width: 150px;
		height: 100px;
		top: 320px;
		right: 200px;
	}
	
	.image-7 {
		width: 140px;
		height: 95px;
		top: 380px;
		right: 120px;
	}
	
	.image-8 {
		width: 130px;
		height: 90px;
		top: 100px;
		right: 250px;
	}
	
	.image-9 {
		width: 120px;
		height: 85px;
		top: 300px;
		right: 10px;
	}
	
	.main-header {
		padding: 12px 0;
	}
	
	/* More compact mobile services grid */
	.services-grid {
		padding: 50px 0;
	}
	
	.services-cards {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 24px;
	}
	
	.service-card {
		padding: 16px;
	}
	
	.service-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 12px;
	}
	
	.service-icon i {
		font-size: 16px;
	}
	
	.service-card h3 {
		font-size: 15px;
		margin-bottom: 6px;
	}
	
	.service-card p {
		font-size: 12px;
		margin-bottom: 12px;
		line-height: 1.3;
	}
	
	.service-link {
		font-size: 11px;
	}
	
	.section-header {
		margin-bottom: 24px;
	}
	
	.section-header .section-stats {
		gap: 24px;
		margin-bottom: 16px;
	}
	
	.section-stat-number {
		font-size: 20px;
	}
	
	.section-header h2 {
		font-size: 22px;
		margin-bottom: 12px;
	}
	
	.section-header p {
		font-size: 14px;
	}
	
	.featured-projects-gallery {
		padding: 50px 0;
	}
	
	.projects-gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.gallery-item.large {
		grid-column: span 1;
		height: 280px;
	}
	
	.section-header-center h2 {
		font-size: 1.5rem;
	}
	
	.gallery-overlay {
		opacity: 1;
		transform: translateY(0);
		background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
	}
}

/* Services Grid */
.services-grid {
	padding: 80px 0;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.services-grid * {
	background: transparent !important;
}

.services-grid .service-card {
	background: rgba(255, 255, 255, 0.12) !important;
}

.services-grid .service-card:hover {
	background: rgba(255, 255, 255, 0.18) !important;
}

.services-grid .service-icon {
	background: rgba(59, 130, 246, 0.1) !important;
}

.services-grid::before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	width: 900px;
	height: 100%;
	background: url('images/inplace-van.png') no-repeat center right;
	background-size: contain;
	opacity: 0.3;
	z-index: 1;
	transform: rotate(-2deg) scale(1.1);
	filter: grayscale(0%);
}

.services-grid::after {
	display: none;
}

.services-grid .container {
	position: relative;
	z-index: 3;
	background: transparent;
}

.section-header {
	text-align: left;
	margin-bottom: 48px;
	max-width: 500px;
}

.section-header .section-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 24px;
}

.section-stat {
	text-align: left;
}

.section-stat-number {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	font-family: 'Poppins', sans-serif;
	line-height: 1;
}

.section-stat-label {
	font-size: 10px;
	font-weight: 600;
	color: var(--text-light);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: 3px;
}

.section-header h2 {
	font-size: 28px;
	margin-bottom: 16px;
	font-weight: 500;
	line-height: 1.2;
}

.section-header p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.5;
	font-weight: 400;
}

.services-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 40px;
}

.service-card {
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 24px 20px;
	text-align: left;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	backdrop-filter: blur(12px);
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-color), #60a5fa);
	opacity: 0;
	transition: var(--transition);
}

.service-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-icon i {
	font-size: 18px;
	color: var(--accent-color);
}

.service-card h3 {
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--primary-color);
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
	line-height: 1.3;
}

.service-card p {
	font-size: 13px;
	color: var(--text-color);
	margin-bottom: 16px;
	line-height: 1.4;
	font-weight: 400;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.service-link {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.service-link:hover {
	color: #2563eb;
	transform: translateX(3px);
}

.service-link::after {
	content: '→';
	transition: var(--transition);
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background: transparent;
	text-align: center;
}

.cta-content h2 {
	font-size: 36px;
	margin-bottom: 16px;
}

.cta-content p {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.btn-outline {
	background: transparent;
	color: var(--accent-color);
	padding: 14px 28px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
	border: 1px solid var(--accent-color);
}

.btn-outline:hover {
	background: var(--accent-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* Commercial Images Stack */
.commercial-images-stack {
	padding: 30px 0;
	position: relative;
}

.commercial-stack-card {
	grid-column: span 1;
	position: relative;
	background: transparent;
	border: none;
	padding: 16px;
}

.commercial-stack {
	position: relative;
	height: 320px;
	width: 100%;
}

.commercial-image {
	position: absolute;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: 1px solid var(--border-color);
}

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

.commercial-1 {
	width: 240px;
	height: 160px;
	top: 20px;
	left: 10px;
	transform: rotate(-8deg);
	z-index: 1;
}

.commercial-2 {
	width: 260px;
	height: 180px;
	top: 80px;
	right: 10px;
	transform: rotate(6deg);
	z-index: 2;
}

.commercial-image:hover {
	transform: rotate(0deg) scale(1.05);
	z-index: 10;
	box-shadow: var(--shadow-md);
}

/* Featured Projects Gallery */
.featured-projects-gallery {
	padding: 80px 0;
	background: var(--bg-light);
}

.projects-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4/3;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
}

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

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

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

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

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

.gallery-overlay h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--white);
}

.gallery-overlay p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
}

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

/* Plumbing Page Background Hero */
.plumbing-hero-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	overflow: hidden;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.6;
	filter: none;
}

.hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.4) 0%,
		rgba(255, 255, 255, 0.3) 30%,
		rgba(255, 255, 255, 0.2) 60%,
		rgba(255, 255, 255, 0.5) 100%
	);
}

/* Ensure main content appears above background */
main {
	position: relative;
	z-index: 1;
}

/* Enhance emergency banner visibility */
.emergency-assistance-banner {
	background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
	position: relative;
	z-index: 2;
}

/* Mobile responsiveness for background */
@media (max-width: 768px) {
	.hero-bg-image {
		opacity: 0.5;
		filter: none;
	}
	
	.hero-bg-overlay {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.5) 0%,
			rgba(255, 255, 255, 0.4) 50%,
			rgba(255, 255, 255, 0.6) 100%
		);
	}
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}
	
	.hero {
		padding: 100px 0 60px;
		min-height: auto;
	}
	
	.hero-container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.hero-title {
		font-size: 24px;
	}
	
	.hero-subtitle {
		font-size: 13px;
	}
	
	.hero-stats {
		gap: 20px;
		justify-content: center;
	}
	
	.stat-number {
		font-size: 24px;
	}
	
	/* Hide complex image stack on very small screens */
	.hero-visual {
		display: none;
	}
	
	/* Simplify grids for mobile */
	.services-grid-modern,
	.benefits-grid,
	.projects-grid-diagonal,
	.process-steps,
	.testimonials-grid,
	.highlights-grid,
	.certifications-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.page-hero-modern {
		padding: 60px 0 40px;
	}
	
	.hero-content-modern h1 {
		font-size: 20px;
	}
	
	.emergency-assistance-banner {
		padding: 16px 0;
	}
	
	.btn-primary,
	.btn-secondary,
	.btn-emergency {
		padding: 10px 20px;
		font-size: 12px;
	}
}

/* Mobile Menu Functionality */
.mobile-menu {
	position: fixed;
	top: 76px;
	left: 0;
	right: 0;
	background: var(--white);
	border-top: 1px solid var(--border-color);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mobile-menu-links {
	list-style: none;
	padding: 24px;
}

.mobile-menu-links li {
	margin-bottom: 16px;
}

.mobile-menu-links a {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-color);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
	color: var(--accent-color);
}

.mobile-menu-links a.active {
	font-weight: 600;
}

.mobile-menu-cta {
	padding: 0 24px 24px;
}

.mobile-menu-cta .cta-button {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Intro Slide Styling */
.intro-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1);
    z-index: 3;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.intro-slide.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.intro-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 4;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.intro-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.intro-tagline {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 32px;
    }
    
    .intro-subtitle {
        font-size: 20px;
    }
    
    .intro-tagline {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 28px;
    }
    
    .intro-subtitle {
        font-size: 18px;
    }
    
    .intro-tagline {
        font-size: 14px;
    }
}

/* Permanent Contact Number Overlay */
.contact-overlay {
	position: absolute;
	top: 100px;
	right: 30px;
	z-index: 15;
	pointer-events: none;
}

.contact-number {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	color: white;
	padding: 16px 24px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	animation: contactPulse 3s ease-in-out infinite;
	pointer-events: auto;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-number:hover {
	background: rgba(59, 130, 246, 0.9);
	border-color: rgba(255, 255, 255, 0.4);
	transform: scale(1.05);
	box-shadow: 0 12px 48px rgba(59, 130, 246, 0.4);
	color: white;
	text-decoration: none;
}

.contact-number i {
	font-size: 20px;
	color: #10b981;
	animation: phoneRing 2s ease-in-out infinite;
}

.contact-number span {
	font-size: 22px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes contactPulse {
	0%, 100% { 
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.4);
	}
	50% { 
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(59, 130, 246, 0.1);
	}
}

@keyframes phoneRing {
	0%, 100% { transform: rotate(0deg); }
	10%, 30% { transform: rotate(-10deg); }
	20% { transform: rotate(10deg); }
}

/* Mobile responsiveness for contact overlay */
@media (max-width: 768px) {
	.contact-overlay {
		top: 80px;
		right: 20px;
	}
	
	.contact-number {
		padding: 12px 18px;
		gap: 8px;
	}
	
	.contact-number i {
		font-size: 16px;
	}
	
	.contact-number span {
		font-size: 18px;
		letter-spacing: 0.5px;
	}
}

@media (max-width: 480px) {
	.contact-overlay {
		top: 70px;
		right: 15px;
	}
	
	.contact-number {
		padding: 10px 16px;
		gap: 6px;
	}
	
	.contact-number i {
		font-size: 14px;
	}
	
	.contact-number span {
		font-size: 16px;
		letter-spacing: 0px;
	}
}

@media (max-width: 768px) {
    /* Hide hero text slideshow in mobile */
    .hero-text-slideshow {
        display: none;
    }

    /* Hide submenu captions */
    .hero-slide-overlay {
        display: none;
    }

    /* Adjust hero content for mobile */
    .hero-container {
        margin-top: 120px;
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-stats {
        justify-content: center;
        margin: 24px 0;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    /* Hide image stack in mobile */
    .hero-visual {
        display: none;
    }

    /* Adjust services section */
    .services-grid .services-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
        gap: 20px;
    }

    .services-grid .service-card {
        padding: 24px;
        text-align: left;
    }

    .services-grid .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .services-grid .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .services-grid .service-card p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        margin-top: 100px;
    }

    .hero-title {
        font-size: 24px;
    }

    .services-grid .services-cards {
        padding: 0 16px;
    }

    .services-grid .service-card {
        padding: 20px;
    }
}
