
/* =========================================================
   RESET AND BASE STYLES
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: "Cinzel", serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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


/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* =========================================================
   GRADIENT
========================================================= */

.gradient-heading {
    background: linear-gradient(
        90deg,
        #d4af37 0%,
        #ff6b9d 25%,
        #9d4edd 50%,
        #4cc9f0 75%,
        #ff9e00 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    background-size: 200% auto;

    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-title span {
    background: linear-gradient(
        90deg,
        #d4af37,
        #ff6b9d,
        #9d4edd
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-block;

    padding: 14px 32px;

    border-radius: 30px;

    font-weight: 600;

    font-size: 16px;

    cursor: pointer;

    transition: all 0.3s ease;

    text-align: center;

    border: none;

    font-family: "Montserrat", sans-serif;
}

.btn-primary {
    background: linear-gradient(
        90deg,
        #d4af37,
        #ff6b9d
    );

    color: white;

    box-shadow:
        0 4px 15px
        rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 6px 20px
        rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: transparent;

    color: white;

    border:
        2px solid
        rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background:
        rgba(255, 255, 255, 0.1);

    border-color:
        rgba(255, 255, 255, 0.5);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 20px 5%;

    background:
        rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);

    z-index: 1000;

    transition: all 0.3s ease;
}

.nav-container {
    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 1400px;

    margin: 0 auto;
}

.nav-container img {
    flex-shrink: 0;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 40px;
}

.nav-links > a {
    display: flex;

    align-items: center;

    position: relative;

    padding: 5px 0;

    font-weight: 500;

    transition: color 0.3s;

    white-space: nowrap;
}

.nav-links > a::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d4af37,
            #ff6b9d
        );

    transition: width 0.3s;
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
    width: 100%;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.services-dropdown {
    position: relative;

    display: flex;

    align-items: center;

    height: 100%;

    margin: 0;

    padding: 0;
}


/* SERVICES LINK */

.services-dropdown > .services-link {
    display: flex !important;

    align-items: center;

    justify-content: center;

    gap: 7px;

    position: relative;

    padding: 5px 0 !important;

    margin: 0 !important;

    font-weight: 500;

    line-height: normal;

    white-space: nowrap;

    cursor: pointer;

    transition: color 0.3s ease;
}


/* SERVICES UNDERLINE */

.services-dropdown > .services-link::after {
    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d4af37,
            #ff6b9d
        );

    transition: width 0.3s ease;
}


/* SERVICES UNDERLINE ON HOVER */

.services-dropdown:hover > .services-link::after {
    width: 100%;
}


/* SERVICES ARROW */

.services-dropdown > .services-link i {
    font-size: 11px;

    transition:
        transform 0.3s ease;
}


/* ROTATE ARROW ON HOVER */

.services-dropdown:hover >
.services-link i {
    transform: rotate(180deg);
}


/* =========================================================
   SERVICES DROPDOWN BOX
========================================================= */

.services-mega-menu {

    position: absolute;

    /*
       IMPORTANT:
       No gap between Services and dropdown.
       This prevents hover from disappearing.
    */

    top: 100%;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(10px);

    width: max-content;

    min-width: 230px;

    max-width: 280px;

    padding: 12px 18px;

    display: block;

    background:
        rgba(0, 0, 0, 0.98);

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.45);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 99999;
}


/* =========================================================
   DESKTOP HOVER
========================================================= */

.services-dropdown:hover
.services-mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   CLICK STATE
   Your existing JS can still use .active
========================================================= */

.services-dropdown.active
.services-mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   SERVICE COLUMN
========================================================= */

.services-mega-menu .service-column {

    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}


/* =========================================================
   SERVICE LINKS
========================================================= */

.services-mega-menu
.service-column a {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 5px;

    color: white;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.services-mega-menu
.service-column a i {

    font-size: 11px;

    flex-shrink: 0;
}

.services-mega-menu
.service-column a:hover {

    color: #c9a7ff;

    transform:
        translateX(3px);
}


/* =========================================================
   NAV ICONS
========================================================= */

.nav-icons {
    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-icon {
    font-size: 20px;

    position: relative;

    transition:
        transform 0.3s;
}

.nav-icon:hover {
    transform:
        translateY(-3px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 24px;

    cursor: pointer;

    padding: 5px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding:
        180px 5% 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 1400px;

    margin: 0 auto;

    min-height: 100vh;
}

.hero-content {
    flex: 1;

    max-width: 600px;
}

.hero h1 {
    font-size: 56px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-size: 18px;

    line-height: 1.6;

    color:
        rgba(255, 255, 255, 0.8);

    margin-bottom: 40px;

    max-width: 500px;
}

.hero-buttons {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.perfume-bottle {
    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;
}

.perfume-bottle img {
    max-width: 100%;

    max-height: 500px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 30px
            rgba(0, 0, 0, 0.5)
        );

    animation:
        float 6s ease-in-out infinite;
}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

section {
    padding: 100px 5%;

    position: relative;
}

.section-title {
    font-size: 42px;

    text-align: center;

    margin-bottom: 60px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    max-width: 1400px;

    margin: 0 auto;
}

.product-card {
    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter:
        blur(10px);

    border-radius: 15px;

    overflow: hidden;

    transition:
        all 0.3s ease;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, 0.3);
}

.product-img {
    height: 250px;

    overflow: hidden;

    position: relative;
}

.product-img img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s;
}

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

.product-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        rgba(0, 0, 0, 0.7);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition:
        opacity 0.3s;
}

.product-card:hover
.product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;

    margin-bottom: 10px;
}

.rating {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 10px;

    color: #d4af37;
}


/* =========================================================
   SPECIAL OFFER
========================================================= */

.special-offer {
    background:
        linear-gradient(
            90deg,
            rgba(157, 78, 221, 0.2),
            rgba(255, 107, 157, 0.2)
        );

    backdrop-filter:
        blur(10px);

    border-radius: 20px;

    padding: 80px 5%;

    text-align: center;

    max-width: 1200px;

    margin:
        0 auto 100px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.offer-title {
    font-size: 48px;

    margin-bottom: 20px;
}

.offer-text {
    font-size: 14px;

    margin-bottom: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-btn {
    position: fixed;

    bottom: 20px;

    right: 20px;

    width: 60px;

    height: 60px;

    background: #25D366;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.3);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform:
        scale(1.1);

    background:
        #1EBE5D;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-container {
    max-width: 800px;

    margin: 0 auto;

    position: relative;
}

.testimonial-slider {
    position: relative;

    overflow: hidden;

    min-height: 250px;
}

.testimonial-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    opacity: 0;

    transition:
        opacity 0.5s;

    padding: 20px;
}

.testimonial-slide.active {
    opacity: 1;

    position: relative;
}

.testimonial-content {
    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter:
        blur(10px);

    border-radius: 20px;

    padding: 40px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 18px;

    font-style: italic;

    line-height: 1.6;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.9);
}

.client-info h4 {
    font-size: 20px;

    margin-bottom: 5px;
}

.client-info p {
    color:
        rgba(255, 255, 255, 0.7);

    font-style: normal;

    font-size: 14px;

    margin: 0;
}

.testimonial-controls {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background:
        rgba(255, 255, 255, 0.1);

    border: none;

    color: white;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;
}

.testimonial-dots {
    display: flex;

    gap: 10px;
}

.dot {
    width: 12px;

    height: 12px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.3);

    cursor: pointer;
}

.dot.active {
    background:
        #ff6b9d;

    transform:
        scale(1.2);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    max-width: 1400px;

    margin: 0 auto;
}

.contact-info {
    display: flex;

    flex-direction: column;

    gap: 30px;
}

.contact-item {
    display: flex;

    gap: 20px;

    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;

    color: #4cc9f0;

    margin-top: 5px;
}

.contact-item h3 {
    font-size: 20px;

    margin-bottom: 5px;
}

.contact-item p {
    color:
        rgba(255, 255, 255, 0.7);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background:
        rgba(0, 0, 0, 0.8);

    backdrop-filter:
        blur(10px);

    padding:
        80px 5% 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 50px;

    max-width: 1400px;

    margin:
        0 auto 50px;
}

.footer-section p {
    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.6;

    margin:
        15px 0;
}

.social-links {
    display: flex;

    gap: 15px;

    margin-top: 20px;
}

.social-links a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background:
        rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    transition:
        all 0.3s;
}

.social-links a:hover {
    background:
        #ff6b9d;

    transform:
        translateY(-5px);
}

.footer-section h3 {
    font-size: 22px;

    margin-bottom: 25px;
}

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

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

.footer-section ul li a {
    color:
        rgba(255, 255, 255, 0.7);

    transition:
        color 0.3s;
}

.footer-section ul li a:hover {
    color:
        #ff6b9d;
}

.elementor-widget-container {
    text-align: center;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

    color:
        rgba(255, 255, 255, 0.7);
}


/* =========================================================
   SERVICE PAGE
========================================================= */

.service-page {
    min-height: 75vh;

    padding:
        160px 5% 100px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.service-page-content {
    width: 100%;

    max-width: 1000px;
}

.service-page-content h1 {
    font-size: 52px;

    margin-bottom: 45px;
}

.service-page-services {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 18px;

    max-width: 850px;

    margin: 0 auto;
}

.service-page-services a {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 230px;

    padding:
        16px 24px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 16px;

    font-weight: 500;

    color: white;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    backdrop-filter:
        blur(10px);

    transition:
        all 0.3s ease;
}

.service-page-services a:hover {
    transform:
        translateY(-5px);

    background:
        rgba(255, 255, 255, 0.10);

    border-color:
        #ff6b9d;

    box-shadow:
        0 8px 25px
        rgba(255, 107, 157, 0.25);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding:
        80px 5%;

    background: transparent;

    text-align: center;

    color: #fff;
}

.reviews-heading {
    margin-bottom: 40px;
}

.reviews-heading h2 {
    font-family:
        "Cinzel",
        serif;

    font-size: 38px;

    margin-bottom: 10px;

    color: #fff;
}

.reviews-heading p {
    color:
        rgba(255, 255, 255, 0.7);

    font-size: 14px;
}

.google-rating {
    width: 280px;

    margin:
        0 auto 45px;

    padding: 25px;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 12px;

    backdrop-filter:
        blur(10px);

    text-align: center;
}

.google-rating h2 {
    font-size: 45px;

    margin: 0;

    color: #fff;
}

.google-rating p {
    margin: 8px 0;

    color:
        rgba(255, 255, 255, 0.75);
}

.google-stars {
    margin: 10px 0;
}

.google-stars i {
    color: #fbbc04;

    font-size: 18px;

    margin: 2px;
}

.google-text {
    font-size: 12px;

    color:
        rgba(255, 255, 255, 0.55);
}

.reviews-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    text-align: left;
}

.review-box {
    padding: 25px;

    min-height: 220px;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 12px;

    backdrop-filter:
        blur(10px);
}

.review-profile {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;
}

.profile-circle {
    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 17px;

    font-weight: 600;
}

.review-profile h4 {
    margin: 0;

    font-size: 15px;

    color: #fff;
}

.review-profile span {
    display: block;

    margin-top: 4px;

    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.55);
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars i {
    color: #fbbc04;

    font-size: 14px;

    margin-right: 2px;
}

.review-box p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 13px;

    line-height: 1.7;
}

.review-button {
    margin-top: 40px;

    text-align: center;
}

.review-button a {
    display: inline-block;

    padding:
        12px 25px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    color: #fff;
}


/* =========================================================
   RESPONSIVE - 1200px
========================================================= */

@media (max-width: 1200px) {

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

    .hero h1 {
        font-size: 48px;
    }
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 25px;
    }
}


/* =========================================================
   RESPONSIVE - 992px
========================================================= */

@media (max-width: 992px) {

    /* HERO */

    .hero {
        flex-direction: column;

        text-align: center;

        padding-top: 150px;
    }

    .hero-content {
        max-width: 100%;

        margin-bottom: 50px;
    }


    /* CONTACT */

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


    /* =====================================================
       MOBILE HAMBURGER
    ===================================================== */

    .hamburger {
        display: block !important;

        background: none;

        border: none;

        color: white;

        font-size: 25px;

        cursor: pointer;

        padding: 5px;
    }


    /* =====================================================
       MOBILE NAV
    ===================================================== */

    .nav-links {

        display: flex !important;

        position: fixed;

        top: 0;

        left: -320px;

        width: 300px;

        height: 100vh;

        background:
            rgba(10, 10, 20, 0.98);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        flex-direction: column;

        align-items: stretch;

        padding:
            90px 25px 30px;

        gap: 5px;

        overflow-y: auto;

        z-index: 99999;

        transition:
            left 0.35s ease;
    }


    /* OPEN MOBILE MENU */

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


    /* NORMAL LINKS */

    .nav-links > a {

        display: flex !important;

        width: 100%;

        justify-content: flex-start;

        align-items: center;

        padding:
            16px 10px;

        text-align: left;

        border-bottom:
            1px solid
            rgba(255,255,255,0.08);
    }


    /* =====================================================
       MOBILE SERVICES
    ===================================================== */

    .services-dropdown {

        width: 100%;

        display: block !important;

        position: relative;

        height: auto;
    }


    .services-dropdown >
    .services-link {

        width: 100%;

        display: flex !important;

        justify-content:
            space-between;

        align-items: center;

        padding:
            16px 10px !important;

        margin: 0 !important;

        text-align: left;
    }


    /* =====================================================
       MOBILE SERVICES DROPDOWN
    ===================================================== */

    .services-dropdown
    .services-mega-menu {

        position: static !important;

        width: 100% !important;

        min-width: 0 !important;

        max-width: 100% !important;

        display: none !important;

        transform: none !important;

        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto !important;

        margin:
            5px 0 10px !important;

        padding:
            12px 15px !important;

        background:
            rgba(0, 0, 0, 0.98) !important;

        border:
            1px solid
            rgba(255,255,255,0.12);

        border-radius: 10px;

        box-shadow: none;
    }


    /* OPEN MOBILE SERVICES */

    .services-dropdown.active
    .services-mega-menu {

        display: block !important;
    }


    /*
       IMPORTANT:
       Desktop hover is disabled on mobile.
    */

    .services-dropdown:hover
    .services-mega-menu {

        display: none !important;
    }


    .services-dropdown.active:hover
    .services-mega-menu {

        display: block !important;
    }


    /* MOBILE SERVICE COLUMN */

    .service-column {

        width: 100%;

        margin: 0 !important;

        padding: 0 !important;
    }


    /* MOBILE SERVICE LINKS */

    .services-mega-menu
    .service-column a {

        display: flex !important;

        width: 100%;

        padding:
            8px 3px;

        font-size: 12px;

        white-space: normal;
    }


    .services-mega-menu
    .service-column a i {

        font-size: 10px;
    }
}


/* =========================================================
   RESPONSIVE - 768px
========================================================= */

@media (max-width: 768px) {

    .product-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .special-offer {
        padding:
            50px 20px;
    }

    .offer-title {
        font-size: 36px;
    }


    /* SERVICE PAGE */

    .service-page {
        padding:
            140px 20px 80px;
    }

    .service-page-content h1 {
        font-size: 38px;

        margin-bottom: 35px;
    }

    .service-page-services {
        gap: 15px;
    }

    .service-page-services a {
        min-width: 200px;

        padding:
            14px 20px;

        font-size: 15px;
    }


    /* REVIEWS */

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


/* =========================================================
   RESPONSIVE - 576px
========================================================= */

@media (max-width: 576px) {

    .navbar {
        padding:
            15px 20px;
    }

    .nav-links {
        padding:
            90px 15px 30px;
    }

    section {
        padding:
            80px 20px;
    }

    .hero {
        padding:
            150px 20px 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn {
        padding:
            12px 25px;

        font-size: 14px;
    }

    .testimonial-content {
        padding:
            30px 20px;
    }


    /* SERVICE PAGE */

    .service-page-content h1 {
        font-size: 32px;
    }

    .service-page-services {
        flex-direction: column;

        align-items: center;
    }

    .service-page-services a {
        width: 100%;

        max-width: 300px;
    }


    /* SERVICES DROPDOWN */

    .services-dropdown
    .services-mega-menu {

        padding:
            10px 12px !important;
    }

    .services-mega-menu
    .service-column a {

        padding:
            7px 3px;

        font-size: 12px;
    }


    /* REVIEWS */

    .reviews-section {
        padding:
            60px 5%;
    }

    .reviews-heading h2 {
        font-size: 30px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .google-rating {
        width: 100%;

        max-width: 280px;
    }

    .review-box {
        min-height: auto;
    }
}


/* =========================================================
   VERY SMALL SCREEN
========================================================= */

@media (max-width: 400px) {

    .nav-container img {
        max-width: 120px;

        height: auto;
    }

    .hamburger {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 28px;
    }
}
