:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #ff9800;
    --secondary-dark: #e68900;
    --light: #f9f9f9;
    --dark: #222;
    --gray: #666;
    --light-gray: #f1f1f1;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: var(--secondary);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(25px, 3vw, 40px);
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover:after {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

section {
    padding: clamp(60px, 10vw, 120px) 0;
}

.text-center {
    text-align: center;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.99);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    position: relative;
    overflow: hidden;
}

.logo-img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.logo:hover .logo-img:after {
    left: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span:first-child {
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    font-weight: 700;
}

.logo-text span:last-child {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 400;
    color: var(--gray);
}

/* Navigation Styles - Fixed for Mobile */
nav ul {
    display: flex;
    list-style: none;
    gap: clamp(15px, 2vw, 35px);
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(20px, 2.5vw, 30px);
    font-size: clamp(0.8rem, 1.3vw, 1rem);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
    background: none;
    border: none;
    padding: 5px;
}

.mobile-toggle:hover {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding-top: clamp(150px, 25vw, 200px);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: clamp(500px, 100vh, 100vh);
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    z-index: 1;
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-btns {
    display: flex;
    gap: clamp(15px, 2vw, 25px);
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    gap: clamp(20px, 3vw, 40px);
    margin-top: 60px;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    text-align: center;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 30px);
    position: relative;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-heavy);
}

.service-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    width: clamp(80px, 12vw, 110px);
    height: clamp(80px, 12vw, 110px);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    transition: var(--transition);
    box-shadow: 0 15px 25px rgba(46, 125, 50, 0.2);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 30px;
}

/* AMC Section */
.amc-section {
    background-color: rgba(46, 125, 50, 0.03);
    position: relative;
    overflow: hidden;
}

.amc-section:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.amc-section:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}

.amc-content {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.amc-text {
    flex: 1;
    min-width: min(350px, 100%);
}

.amc-visual {
    flex: 1;
    min-width: min(350px, 100%);
    height: clamp(300px, 50vw, 550px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-heavy);
}

.amc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.amc-visual:hover .amc-image {
    transform: scale(1.05);
}

.amc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 87, 33, 0.9), transparent);
    color: white;
    padding: clamp(20px, 3vw, 40px);
}

.amc-overlay h3 {
    color: white;
    margin-bottom: 15px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.amc-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.amc-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: clamp(15px, 2vw, 25px);
    margin-top: 40px;
}

.amc-feature {
    background-color: white;
    padding: clamp(20px, 3vw, 25px);
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 20px);
    transition: var(--transition);
}

.amc-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.amc-feature i {
    color: var(--primary);
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amc-feature h4 {
    margin-bottom: 10px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.amc-feature p {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    margin-bottom: 0;
}

/* AMC Coverage List */
.amc-coverage {
    background-color: white;
    padding: clamp(25px, 4vw, 40px);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.amc-coverage h4 {
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-light);
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(15px, 2vw, 25px);
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 15px);
    padding: clamp(15px, 2vw, 20px);
    background-color: rgba(46, 125, 50, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.coverage-item:hover {
    background-color: rgba(46, 125, 50, 0.1);
    transform: translateX(10px);
}

.coverage-item i {
    color: var(--primary);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    width: clamp(45px, 7vw, 60px);
    height: clamp(45px, 7vw, 60px);
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-item h5 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 5px;
}

.coverage-item p {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    margin-bottom: 0;
    color: var(--gray);
}

/* App Download Section */
.app-section {
    background: white;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.app-section:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.app-section:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
}

.app-section h2 {
    color: var(--primary-dark);
}

.app-section h2:after {
    background-color: var(--secondary);
}

.app-section p {
    color: var(--gray);
}

/* App text section with black text */
.app-text {
    flex: 1;
    min-width: min(350px, 100%);
}

.app-text h3 {
    color: var(--dark);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.app-text h4 {
    color: var(--dark);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 1.5rem;
}

.app-text p {
    color: var(--gray);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
}

.app-content {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.app-visual {
    flex: 1;
    min-width: min(350px, 100%);
    height: clamp(300px, 50vw, 600px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app-main-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: float 8s ease-in-out infinite;
    border: 8px solid #f5f5f5;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.app-float-icon {
    position: absolute;
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    animation: float-icon 10s ease-in-out infinite;
}

.app-float-icon:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.app-float-icon:nth-child(2) {
    top: 5%;
    right: 5%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.app-float-icon:nth-child(3) {
    bottom: 5%;
    left: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
}

.app-float-icon:nth-child(4) {
    bottom: 5%;
    right: 5%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

@keyframes float-icon {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.15);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.app-float-icon i {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
}

.download-buttons {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
    margin-top: 50px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 20px);
    background-color: var(--primary);
    color: white;
    padding: clamp(15px, 2.5vw, 22px) clamp(20px, 2.5vw, 30px);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-slow);
    flex: 1;
    min-width: min(250px, 100%);
    max-width: 300px;
}

.download-btn:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
    background-color: var(--primary-dark);
}

.download-btn i {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
}

.download-btn div div:first-child {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.9);
}

.download-btn div div:last-child {
    font-weight: bold;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: white;
}

/* App Features List - Black text */
.app-features-list {
    list-style: none;
    margin-top: 25px;
}

.app-features-list li {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.app-features-list li i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: clamp(60px, 10vw, 100px) 0 clamp(30px, 5vw, 40px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: 60px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 30px;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: clamp(10px, 1.5vw, 15px);
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.footer-column ul li a:hover {
    color: var(--secondary);
    transform: translateX(8px);
}

.social-icons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-8px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Responsive Design */

/* Large Tablets and Small Laptops (992px - 1200px) */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .coverage-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--shadow-heavy);
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-slow);
        visibility: hidden;
        z-index: 999;
        height: calc(100vh - 100px);
        overflow-y: auto;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li a.btn {
        display: inline-block;
        margin-top: 10px;
        border: none;
    }

    .hero {
        padding-top: 180px;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-btns {
        justify-content: center;
    }

    .amc-visual,
    .app-visual {
        height: 500px;
    }

    .amc-content,
    .app-content {
        gap: 60px;
    }

    .logo-text span:first-child {
        font-size: 1.8rem;
    }
}

/* Small Tablets and Large Phones (576px - 768px) */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .logo-text {
        display: none;
    }

    .app-visual {
        height: 400px;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }

    .amc-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .amc-overlay {
        padding: 20px;
    }

    .amc-overlay h3 {
        font-size: 1.5rem;
    }

    .amc-overlay p {
        font-size: 1rem;
    }

    .app-float-icon {
        width: 70px;
        height: 70px;
    }

    .app-float-icon i {
        font-size: 1.8rem;
    }
}

/* Mobile Phones (Up to 576px) */
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .download-btn {
        min-width: 100%;
    }

    .amc-visual,
    .app-visual {
        height: 350px;
    }

    .amc-content,
    .app-content {
        gap: 40px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .amc-feature {
        flex-direction: column;
        text-align: center;
    }

    .coverage-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 100%;
    }

    .app-float-icon {
        width: 60px;
        height: 60px;
        display: none;
        /* Hide on very small screens */
    }

    nav {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .app-features-list li {
        font-size: 1rem;
        align-items: flex-start;
    }
}

/* Very Small Phones (Up to 375px) */
@media (max-width: 375px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .amc-visual,
    .app-visual {
        height: 300px;
    }

    .footer-column {
        min-width: 100%;
    }

    .logo-img {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    nav {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .service-card {
        padding: 20px 15px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .btn {
        font-weight: 600;
    }

    nav ul li a {
        font-weight: 600;
    }
}

/* Print Styles */
@media print {

    header,
    .floating-whatsapp,
    .hero:before,
    .amc-section:before,
    .amc-section:after,
    .app-section:before,
    .app-section:after,
    footer {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        padding-top: 50px !important;
    }

    .hero h1,
    h2,
    h3,
    h4,
    h5 {
        color: black !important;
    }

    .btn {
        display: none !important;
    }

    section {
        padding: 50px 0 !important;
    }
}


/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Google-inspired Contact Section Styles - RESPONSIVE */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4 0%, #34A853 25%, #FBBC05 50%, #EA4335 75%, #4285F4 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    color: #5f6368;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.google-colors {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.color-dot.blue {
    background: #4285F4;
}

.color-dot.green {
    background: #34A853;
}

.color-dot.yellow {
    background: #FBBC05;
}

.color-dot.red {
    background: #EA4335;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.1), 0 4px 8px rgba(60, 64, 67, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dadce0;
}

.contact-info-side:hover {
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.2), 0 8px 24px rgba(60, 64, 67, 0.2);
    transform: translateY(-2px);
}

.contact-info-side h3 {
    font-size: 1.8rem;
    color: #202124;
    margin-bottom: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.contact-info-side h3 i {
    color: #4285F4;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-method:hover {
    background: #f1f3f4;
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.method-icon.phone {
    color: #4285F4;
}

.method-icon.email {
    color: #EA4335;
}

.method-icon.clock {
    color: #34A853;
}

.method-icon.whatsapp {
    color: #25D366;
}

.method-content {
    flex: 1;
    min-width: 0;
    /* Prevents text overflow */
}

.method-content h4 {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.4;
}

.method-content a,
.method-content span {
    font-size: 1.3rem;
    color: #202124;
    text-decoration: none;
    font-weight: 500;
    display: block;
    word-break: break-all;
    /* Prevents long text overflow */
    line-height: 1.3;
}

.method-content a:hover {
    color: #4285F4;
    text-decoration: underline;
}

/* Form Side */
.contact-form-side {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.1), 0 4px 8px rgba(60, 64, 67, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dadce0;
}

.contact-form-side:hover {
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.2), 0 8px 24px rgba(60, 64, 67, 0.2);
    transform: translateY(-2px);
}

.contact-form-side h3 {
    font-size: 1.8rem;
    color: #202124;
    margin-bottom: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.contact-form-side h3 i {
    color: #EA4335;
}

.google-input-group {
    margin-bottom: 24px;
}

.google-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #dadce0;
    border-radius: 8px;
    font-size: 1rem;
    color: #202124;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.google-input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.google-input::placeholder {
    color: #9aa0a6;
}

.google-select {
    width: 100%;
    padding: 16px;
    border: 2px solid #dadce0;
    border-radius: 8px;
    font-size: 1rem;
    color: #202124;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.google-select:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.google-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #dadce0;
    border-radius: 8px;
    font-size: 1rem;
    color: #202124;
    background: white;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.google-textarea:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: #4285F4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.google-button:hover {
    background: #3367d6;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

.google-button:active {
    transform: translateY(0);
}

.google-button i {
    font-size: 1.2rem;
}

/* Service Hours Card */
.service-hours-card {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
    border-radius: 12px;
    border-left: 4px solid #FBBC05;
}

.service-hours-card h4 {
    font-size: 1.1rem;
    color: #202124;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.service-hours-card h4 i {
    color: #FBBC05;
}

.service-hours-card p {
    font-size: 1.1rem;
    color: #5f6368;
    margin: 0;
    line-height: 1.5;
}

/* Response Time Card */
.response-card {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    border-radius: 12px;
    border-left: 4px solid #34A853;
    text-align: center;
}

.response-card h4 {
    font-size: 1.1rem;
    color: #202124;
    margin-bottom: 5px;
    line-height: 1.3;
}

.response-card p {
    font-size: 1rem;
    color: #5f6368;
    margin: 0;
    line-height: 1.5;
}

/* Grid for form inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* Map Card */
.map-card {
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dadce0;
}

.map-header {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dadce0;
}

.map-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #202124;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #e8eaed 0%, #dadce0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

/* =========================================== */
/* RESPONSIVE DESIGN BREAKPOINTS */
/* =========================================== */

/* Large Tablets & Small Laptops (992px - 1200px) */
@media screen and (max-width: 1200px) {
    .contact-container {
        max-width: 960px;
        padding: 0 30px;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 35px;
    }
}

/* Tablets (768px - 992px) */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }

    .contact-header h2 {
        font-size: 2.2rem;
    }

    .contact-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-method {
        padding: 15px;
        gap: 15px;
    }

    .method-icon {
        width: 45px;
        height: 45px;
    }

    .method-content a,
    .method-content span {
        font-size: 1.2rem;
    }
}

/* Mobile Landscape & Small Tablets (576px - 768px) */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-header h2 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .contact-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .contact-info-side h3,
    .contact-form-side h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .contact-methods {
        gap: 20px;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-icon i {
        font-size: 1.1rem;
    }

    .method-content h4 {
        font-size: 1rem;
    }

    .method-content a,
    .method-content span {
        font-size: 1.1rem;
    }

    .google-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .service-hours-card,
    .response-card {
        padding: 15px;
    }

    .service-hours-card p,
    .response-card p {
        font-size: 0.95rem;
    }

    .map-placeholder {
        height: 180px;
        font-size: 0.9rem;
    }

    /* Adjust WhatsApp button for mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Mobile Portrait (480px - 576px) */
@media screen and (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .google-colors {
        gap: 10px;
    }

    .color-dot {
        width: 10px;
        height: 10px;
    }

    .contact-info-side h3,
    .contact-form-side h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contact-info-side h3 i,
    .contact-form-side h3 i {
        margin-bottom: 5px;
    }

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
    }

    .method-content {
        width: 100%;
    }

    .contact-method:hover {
        transform: translateY(-2px);
    }

    .google-input,
    .google-select,
    .google-textarea {
        padding: 14px;
        font-size: 0.95rem;
    }

    .google-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .map-placeholder {
        height: 150px;
    }
}

/* Small Mobile Devices (320px - 480px) */
@media screen and (max-width: 480px) {
    .contact-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .contact-header p {
        font-size: 0.95rem;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .contact-info-side h3,
    .contact-form-side h3 {
        font-size: 1.4rem;
    }

    .contact-methods {
        gap: 15px;
    }

    .contact-method {
        padding: 12px;
    }

    .method-icon {
        width: 45px;
        height: 45px;
    }

    .method-content a,
    .method-content span {
        font-size: 1rem;
    }

    .google-input,
    .google-select,
    .google-textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .google-select {
        background-position: right 12px center;
    }

    .service-hours-card,
    .response-card {
        padding: 12px;
        margin-top: 20px;
    }

    .service-hours-card h4,
    .response-card h4 {
        font-size: 1rem;
    }

    .service-hours-card p,
    .response-card p {
        font-size: 0.9rem;
    }

    .map-placeholder {
        height: 130px;
        font-size: 0.85rem;
        padding: 15px;
    }

    .map-header {
        padding: 12px 15px;
    }

    .map-header h4 {
        font-size: 1rem;
    }

    /* Smaller WhatsApp button for very small screens */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Extra Small Devices (below 320px) */
@media screen and (max-width: 320px) {
    .contact-header h2 {
        font-size: 1.4rem;
    }

    .contact-header p {
        font-size: 0.9rem;
    }

    .contact-info-side h3,
    .contact-form-side h3 {
        font-size: 1.3rem;
    }

    .contact-method {
        padding: 10px;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-icon i {
        font-size: 1rem;
    }

    .method-content h4 {
        font-size: 0.9rem;
    }

    .method-content a,
    .method-content span {
        font-size: 0.95rem;
    }

    .google-input,
    .google-select,
    .google-textarea {
        padding: 10px;
        font-size: 0.85rem;
    }

    .google-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-side,
.contact-form-side {
    animation: fadeInUp 0.6s ease-out;
}

/* Prevent text overflow on very long words */
.method-content a,
.method-content span,
.google-input,
.google-select,
.google-textarea {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Touch-friendly tap targets on mobile */
@media (hover: none) and (pointer: coarse) {

    .contact-method,
    .google-button,
    .method-content a {
        min-height: 44px;
        /* Minimum touch target size */
    }

    .google-input,
    .google-select,
    .google-textarea {
        min-height: 44px;
    }

    .contact-method:hover {
        transform: none;
    }

    .contact-info-side:hover,
    .contact-form-side:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(60, 64, 67, 0.1), 0 4px 8px rgba(60, 64, 67, 0.1);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .contact-info-side,
    .contact-form-side {
        border: 2px solid #000;
    }

    .google-input,
    .google-select,
    .google-textarea {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .contact-section::before,
    .whatsapp-float,
    .whatsapp-float .pulse,
    .contact-info-side,
    .contact-form-side,
    .contact-method,
    .google-button {
        animation: none;
        transition: none;
    }

    .contact-info-side:hover,
    .contact-form-side:hover,
    .contact-method:hover,
    .google-button:hover {
        transform: none;
    }
}