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

@font-face {
    font-family: 'Barbara';
    src: url('../fonts/BARABARA-final.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --fire-dragon: #f87102;
    --too-blue: #0289f8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Touch-friendly elements */
button, a, .nav-link, .cta-button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Smooth text rendering on mobile */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improve touch scrolling on iOS */
* {
    -webkit-overflow-scrolling: touch;
}

/* Better touch targets - minimum 44x44px */\n.nav-link, .hamburger, .carousel-nav, .dot, button, a {\n    min-width: 44px;\n    min-height: 44px;\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n}\n\n.nav-link {\n    display: inline-block;\n}\n\n/* Prevent text selection on interactive elements */\n.hamburger, .carousel-nav, .dot, button {\n    user-select: none;\n    -webkit-user-select: none;\n}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: 'Barbara', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.logo-lotta {
    color: var(--fire-dragon);
}

.logo-pressure {
    color: var(--too-blue);
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--too-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--fire-dragon);
}

.hamburger {
    display: none;
    grid-template-columns: repeat(3, 8px);
    grid-template-rows: repeat(3, 8px);
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    background: rgba(248, 113, 2, 0.1);
    border: 2px solid var(--fire-dragon);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(248, 113, 2, 0.2);
    border-color: var(--too-blue);
    transform: scale(1.05);
}

.hamburger span {
    width: 8px;
    height: 8px;
    background: var(--fire-dragon);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: var(--too-blue);
    transform: scale(1.1);
}

.hamburger.active {
    border-color: var(--too-blue);
    background: rgba(2, 137, 248, 0.2);
}

.hamburger.active span {
    background: var(--too-blue);
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 0;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 6rem;
    font-weight: normal;
    font-family: 'Barbara', 'Poppins', sans-serif;
    color: var(--white);
    margin-bottom: 1rem;
    animation: liquidFillReveal 2.5s ease 1.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-lotta {
    color: var(--fire-dragon);
}

.hero-pressure {
    color: var(--too-blue);
}

@keyframes liquidFillReveal {
    0% {
        clip-path: polygon(
            0% 100%, 
            5% 100%, 
            10% 100%, 
            15% 100%, 
            20% 100%, 
            25% 100%, 
            30% 100%, 
            35% 100%, 
            40% 100%, 
            45% 100%, 
            50% 100%, 
            55% 100%, 
            60% 100%, 
            65% 100%, 
            70% 100%, 
            75% 100%, 
            80% 100%, 
            85% 100%, 
            90% 100%, 
            95% 100%, 
            100% 100%, 
            100% 100%, 
            0% 100%
        );
    }
    100% {
        clip-path: polygon(
            0% 5%, 
            5% 3%, 
            10% 0%, 
            15% 2%, 
            20% 0%, 
            25% 4%, 
            30% 1%, 
            35% 0%, 
            40% 3%, 
            45% 0%, 
            50% 2%, 
            55% 0%, 
            60% 3%, 
            65% 1%, 
            70% 0%, 
            75% 2%, 
            80% 0%, 
            85% 3%, 
            90% 1%, 
            95% 0%, 
            100% 2%, 
            100% 100%, 
            0% 100%
        );
    }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    animation: slideInRight 1s ease 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--too-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 137, 248, 0.3);
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(2, 137, 248, 0.5);
    background: var(--fire-dragon);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--fire-dragon);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.services-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--too-blue);
    transform: translateX(-50%);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInView 0.6s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInView {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
}

.service-icon-wrapper {
    position: relative;
    min-width: 180px;
    width: 180px;
    height: 180px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-left .service-icon-wrapper {
    border: 4px solid var(--too-blue);
}

.service-right .service-icon-wrapper {
    border: 4px solid var(--fire-dragon);
}

.service-icon-wrapper:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service-icon-large {
    font-size: 5rem;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-icon-wrapper:hover .service-icon-large {
    transform: scale(1.2);
}

.service-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-left .service-number {
    background: var(--too-blue);
}

.service-right .service-number {
    background: var(--fire-dragon);
}

.service-details {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-details::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.service-left .service-details::before {
    left: -40px;
    background: var(--too-blue);
}

.service-right .service-details::before {
    right: -40px;
    background: var(--fire-dragon);
}

.service-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-left .service-details h3 {
    color: var(--too-blue);
}

.service-right .service-details h3 {
    color: var(--fire-dragon);
}

.service-details p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-left .feature-tag:hover {
    background: var(--too-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.service-right .feature-tag:hover {
    background: var(--fire-dragon);
    color: var(--white);
    transform: translateY(-2px);
}

/* View More Services Button */
.view-more-services {
    display: none;
    margin: 2rem auto;
    padding: 1rem 2.5rem;
    background: var(--fire-dragon);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(248, 113, 2, 0.3);
    align-items: center;
    gap: 0.5rem;
}

.view-more-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(248, 113, 2, 0.4);
}

.view-more-services .button-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.view-more-services.expanded .button-icon {
    transform: rotate(180deg);
}

.view-more-services.expanded .button-text::after {
    content: ' Less';
}

/* Military Discount Section */
.military-discount {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.military-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn11.bigcommerce.com/s-nrljtmqwk/images/stencil/1280w/products/3514/494/polyextra-heavy-duty-american-flag-4x6-14__41852.1617104574.jpg?c=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    opacity: 0.8;
    z-index: 0;
}

.military-discount::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.military-discount .container {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.discount-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.discount-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.discount-badge h2 {
    font-size: 2.5rem;
    color: var(--too-blue);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.star {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.discount-text h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.discount-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: var(--fire-dragon);
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.discount-text p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-weight: 500;
}

.discount-note {
    font-size: 0.9rem !important;
    font-style: italic;
    color: var(--text-gray);
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 450px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.review-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.review-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--too-blue);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-card {
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 2px solid var(--too-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--fire-dragon);
}

.review-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--too-blue);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.review-location {
    font-size: 1rem;
    color: var(--text-gray);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--fire-dragon);
    transform: scale(1.3);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--too-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--fire-dragon);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -70px;
}

.carousel-next {
    right: -70px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(2, 137, 248, 0.2);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--too-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.columbiamagazine.com/photos/79739.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    opacity: 0.3;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 137, 248, 0.274);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

.contact .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item > div {
    flex: 1;
    min-width: 0;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 430px;
    height: 240px;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--too-blue);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fire-dragon);
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--fire-dragon);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.employee-login-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.employee-login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet & Small Desktop */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-list {
        padding: 0 1rem;
    }
    
    .service-icon-wrapper {
        width: 160px;
        height: 160px;
        min-width: 160px;
    }
    
    .service-icon-large {
        font-size: 4.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        gap: 2rem;
    }
}

/* Tablet Portrait & Large Phones */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hamburger {
        display: grid;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
    }

    .hero {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .hero::before {
        background-position: center center;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-family: 'Barbara', 'Poppins', sans-serif;
        font-weight: normal;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
    }

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

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }

    .services {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .services-list::before {
        display: none;
    }
    
    .service-item {
        margin-bottom: 3rem;
        gap: 2rem;
    }
    
    .service-item,
    .service-left,
    .service-right {
        flex-direction: column !important;
        text-align: center;
    }
    
    .service-icon-wrapper {
        width: 150px;
        height: 150px;
        min-width: 150px;
        margin: 0 auto;
    }
    
    .service-icon-large {
        font-size: 4rem;
    }
    
    .service-details {
        padding: 2rem;
        width: 100%;
    }
    
    .service-details::before {
        display: none;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .service-details p {
        font-size: 0.95rem;
    }
    
    .service-features {
        justify-content: center;
    }
    
    /* Mobile services dropdown */
    .hidden-service {
        display: none;
    }
    
    .hidden-service.show {
        display: flex;
    }
    
    .view-more-services {
        display: flex;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .military-discount {
        padding: 4rem 0;
    }
    
    .discount-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .discount-badge h2 {
        font-size: 2rem;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .discount-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews-carousel {
        padding: 0 10px;
        min-height: 400px;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-image {
        width: 120px;
        height: 120px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .carousel-dots {
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .about {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        max-width: 100%;
        height: 200px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-info {
        overflow-x: hidden;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 0 1rem;
    }

    .social-links {
        align-items: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .navbar .container {
        padding: 0.8rem 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .hamburger {
        padding: 10px;
        grid-template-columns: repeat(3, 7px);
        grid-template-rows: repeat(3, 7px);
        gap: 4px;
    }
    
    .hamburger span {
        width: 7px;
        height: 7px;
    }
    
    .hero {
        padding: 100px 15px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-family: 'Barbara', 'Poppins', sans-serif;
        font-weight: normal;
        line-height: 1.2;
        padding-top: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .service-item {
        margin-bottom: 2.5rem;
    }
    
    .service-icon-wrapper {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        top: -8px;
        right: -8px;
    }
    
    .service-details {
        padding: 1.5rem;
    }
    
    .service-details h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-details p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
    
    .military-discount {
        padding: 3rem 0;
    }
    
    .discount-badge h2 {
        font-size: 1.5rem;
    }
    
    .discount-text h3 {
        font-size: 1.5rem;
    }
    
    .discount-percentage {
        font-size: 2.5rem;
    }
    
    .discount-text p {
        font-size: 0.9rem;
    }
    
    .discount-note {
        font-size: 0.8rem !important;
    }
    
    .reviews {
        padding: 3rem 0;
    }
    
    .reviews-carousel {
        min-height: 420px;
    }
    
    .review-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-location {
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .carousel-prev {
        left: -5px;
    }
    
    .carousel-next {
        right: -5px;
    }
    
    .carousel-dots {
        margin-top: 1rem;
        gap: 0.7rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .about-card {
        padding: 1.2rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .info-icon {
        font-size: 1.5rem;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    .map-container {
        max-width: 100%;
        height: 180px;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .submit-button {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
        font-family: 'Barbara', 'Poppins', sans-serif;
        font-weight: normal;
        padding-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-icon-wrapper {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }
    
    .service-icon-large {
        font-size: 2.5rem;
    }
    
    .cta-button {
        min-width: 160px;
        padding: 0.8rem 1.5rem;
    }
    
    .map-container {
        max-width: 100%;
        height: 160px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .submit-button {
        padding: 0.85rem;
        font-size: 0.9rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
