/* Variables - Professional Blue/Orange Theme + Tech Premium */
:root {
    --primary-blue: #0056b3;
    --primary-dark: #003d80;
    --primary-gradient: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    --accent-orange: #ff6600;
    --accent-gradient: linear-gradient(135deg, #ff6600 0%, #e65c00 100%);
    --text-dark: #2c3e50;
    --text-light: #5a6b7c;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Tech Premium Variables */
    --glow-color: rgba(255, 102, 0, 0.5);
    --glow-blue: rgba(0, 86, 179, 0.5);
    --particle-color: rgba(0, 86, 179, 0.15);
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #00a8ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
    --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px var(--glow-color);
    --transition-smooth: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Particle Background Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title span {
    color: var(--accent-orange);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.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.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Keyframe Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
    }

    50% {
        box-shadow: 0 0 30px var(--glow-color), 0 0 60px var(--glow-color);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Utility Classes for Premium Effects */
.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.glow-effect {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    font-size: 1rem;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--primary-blue);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 61, 128, 0.4), rgba(0, 61, 128, 0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition-smooth);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: var(--shadow-3d);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-3d);
    border-bottom-color: var(--accent-orange);
}

.feature-icon {
    font-size: 3rem;
    background: -webkit-linear-gradient(var(--accent-orange), #ff9933);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-3d);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.reviews h2 {
    color: var(--white);
}

.reviews-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 0 20px;
    text-align: center;
}

.review-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.review-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.reviewer-img,
.reviewer-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.reviewer-avatar {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.reviewer-name {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Services Page */
.page-header {
    background: linear-gradient(rgba(0, 61, 128, 0.85), rgba(0, 61, 128, 0.85)), url('assets/hvac_hero_2_1763951611829.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
    text-align: center;
    margin-top: 0;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-list {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    padding: 60px;
}

.service-info h2 {
    text-align: left;
    left: 0;
    transform: none;
    margin-bottom: 1.5rem;
}

.service-info h2::after {
    margin: 15px 0 0;
}

.service-img {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.info-item {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--bg-light);
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

textarea.form-control {
    height: 180px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #95a5a6;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 8px;
}

.contact-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.license-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.same-day-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    transition: var(--transition-smooth);
}

.services-list {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    padding: 60px;
}

.service-info h2 {
    text-align: left;
    left: 0;
    transform: none;
    margin-bottom: 1.5rem;
}

.service-info h2::after {
    margin: 15px 0 0;
}

.service-img {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.info-item {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--bg-light);
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

textarea.form-control {
    height: 180px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #95a5a6;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 8px;
}

.contact-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.license-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.same-day-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    transition: var(--transition-smooth);
}

.same-day-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

/* Responsive */
/* Responsive - Tablet and Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Stack hero buttons vertically on mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }

    /* Reduce section padding on mobile */
    .about,
    .stats-section,
    .reviews {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    /* Improve stats cards on mobile */
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    /* Reviews section mobile optimization */
    .review-content {
        padding: 40px 25px;
    }

    .review-text {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info-card {
        padding: 30px;
    }

    /* Services page mobile */
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        height: 300px;
    }

    .service-info {
        padding: 40px 30px;
    }

    /* Footer mobile */
    .footer-grid {
        gap: 30px;
    }

    footer {
        padding: 50px 0 20px;
    }
}

/* Extra small devices (phones, less than 400px) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Smaller section titles */
    h2 {
        font-size: 2rem;
    }

    /* Compact stats on very small screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Compact feature cards */
    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* Smaller review cards */
    .review-content {
        padding: 30px 20px;
    }

    .reviewer-img {
        width: 70px;
        height: 70px;
    }

    /* Compact forms */
    .form-control {
        padding: 12px;
        font-size: 0.95rem;
    }

    .contact-form,
    .contact-info-card {
        padding: 25px 20px;
    }

    /* Reduce container padding */
    .container {
        padding: 0 15px;
    }
}