/* Modal image swipe-to-slide effect */
#modalImage {
    will-change: transform;
    position: relative;
    transition: transform 0.3s;
}

:root {
    --off-white: #f7f7fa;
    --secondary: #fde8ca;
    --theme: #215520;
    --text-color: #545454;
    --cta: #ff7800;
    --size1: 0.5rem;
    --size2: 1rem;
    --size3: 2rem;
    --size4: 3rem;
    --size5: 4rem;
    --size6: 5rem;
    --size7: 6rem;
}

* {
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--off-white);
}

body.no-scroll {
    overflow: hidden;
}

.header {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-left {
    background: linear-gradient(180deg, var(--theme) 0%, #268824 100%);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-center {
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.header-center a {
    text-decoration: none;
    color: unset;
}

.logo {
    height: 100%;
    width: 60px;
}

.comp-name {
    width: 125px;
    height: 40%;
}

.contact-box {
    display: flex;
    align-items: center;
}

.contact-box p {
    margin: 0;
    font-size: 12px;
}

.contact-icon {
    height: 50px;
    width: 50px;
    margin: 0 0.5rem 0 1rem;
}

.contact-label {
    color: var(--text-color);
}

.contact-value {
    font-weight: 800;
    color: var(--theme);
}

.contact {
    text-decoration: none;
}

.header-right, nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    padding-right: 0.5rem;
}

.link {
    text-decoration: none;
    color: var(--theme);
    cursor: pointer;
    margin: 0 1rem 0 1rem;
    transition: font-weight 0.3s;
}

.link:hover {
    font-weight: 800;
}

.cta {
    display: block;
    color: var(--off-white);
    background-color: var(--cta);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta:hover::before {
    left: 100%;
}

.cta:hover {
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.4);
}

a.cta {
    text-decoration: none;
}

.selected {
    font-weight: 800;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-right: 1rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--theme);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Styles */
.mobile-nav {
    position: fixed;
    top: 100px;
    right: 0;
    width: 40%;
    min-width: 250px;
    height: 100%;
    background-color: var(--off-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0%);
}

.mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-services {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme);
}

.mobile-nav .link, .mobile-services {
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    user-select: none;
}

.mobile-nav .contact {
    margin: 1rem;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

/* Wrapper around SERVICES */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Submenu hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #444;
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #555;
}

/* Show submenu on hover */
.dropdown:hover .dropdown-menu {
     display: flex;
}

/* Optional arrow indicator */
.dropdown > a::after {
    position: relative;
    top: -2px;
    content: " ▶";
    font-family: var(--copy-font);
    font-size: 0.7rem;
    margin-left: 4px;
    display: inline-block;  
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.dropdown:hover > a::after {
    transform: rotate(90deg);
    color: var(--cta2);
}

.banner {
    overflow: hidden;
    position: relative;
    height: 405px;
}

.circle {
    position: absolute;
    height: 1000px;
    width: 1000px;
    border-radius: 50%;
    background: linear-gradient(180deg, #1c681be0 0%, #268824a8 100%);
    top: -10%;
    left: -400px;
}

.hero-img {
    width: 100%;
    height: 405px;
    z-index: -1;
}

.hero-img img {
    transform: scaleY(102%);
}

.title-holder {
    position: relative;
    bottom: 75%;
    left: 50px;
}

.title p {
    color: var(--off-white);
    position: absolute;
    top: -2.5rem;
}

.title h1 {
    font-family: 'Anton';
    font-weight: 500;
    line-height: 0.92;
    max-width: 25rem;
    font-size: 70px;
    color: var(--off-white);
    margin-bottom: 1rem;

}

.title-buttons {
    position: absolute;

}

.title-buttons a {
    display: block;
    color: var(--off-white);
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.quote-link {
    background-color: var(--cta);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quote-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.quote-link:hover::before {
    left: 100%;
}

.quote-link:hover {
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.4);
}

.gallery-link {
    border: solid 2px var(--off-white);
}

.gallery-link:hover {
    background: white;
    color: var(--theme);
}

.services {
    width: 100%;
    background-color: var(--secondary);
}

.service-header {
    height: 70px;
    width: 100%;
    background-color: var(--theme);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--off-white);
}

.service-link {
    margin: 0 1rem;
}

.service-name {
    font-weight: 700;
    margin-bottom: 0;
}

.service-description {
    font-weight: 300;
    font-size: 10px;
    margin-top: 0;
}

.vertical-divider {
    height: 35px;
    border-left: solid 2px #005e14;
}

.services-body {
    width: 90%;
    margin: auto;
}

.page-title-holder {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem 0;
}

.title-img {
    width: auto;
    height: 80%;
    max-height: 300px;
    align-self: center;
}

.title-img img {
    object-fit: cover;
}

.page-title {
    width: 30%;
    text-align: left;
    padding-top: 1rem;
    align-self: center;
}

.page-title h2 {
    color: var(--theme);
    font-weight: 100;
    font-size: 40px;
    margin: 0 0.1rem;
    letter-spacing: -1.5px;
    font-family: 'Anton';
}

.page-title-link {
    color: var(--theme);
    margin-bottom: -0.5rem;
}

.page-title-text {
    margin-top: 0.5rem;
    color: #414141;
}

.bold {
    font-weight: 700 !important;
}

.service {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-cards-holder {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.service-card {
    max-width: 1200px;
    height: 350px;
    display: flex;
    box-shadow: 0 10px 15px #3a3a3a41;
    border-radius: 10px;
    transition: transform 0.3s ease-out;
}

.service-card:hover {
    transform: translateY(-2%), rotateZ(2deg);
}

.service-text-wrapper {
    background-color: #fff;
    max-width: 700px;
    padding: 1rem;
}

.service-title {
    display: flex;
    justify-content: space-between;
}

.service-title h2 {
    color: var(--theme);
    font-weight: 800;
    letter-spacing: -1.5px;
    font-size: 30px;
}

.service-icon {
    height: 70px;
    width: 70px;
}

.service-copy p {
    margin-top: 0;
    color: #013000
}

.service-btn {
    width: 150px !important;
    text-align: center;
}

.service-img {
    height: 100%;
    width: auto;
}

.service-card.img-left .service-img,
.service-card.img-right .service-text-wrapper {
    border-radius: 10px 0 0 10px;
}

.service-card.img-right .service-img,
.service-card.img-left .service-text-wrapper {
    border-radius: 0 10px 10px 0px;
}

.horizontal-divider {
    width: 50%;
    border-bottom: solid 2px var(--theme);
}

.container {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    margin-top: 1rem;
    align-items: center;
}


.carousel-header-content h2 {
    color: #166534;
    font-family: 'Anton';
    font-size: 3rem;
    letter-spacing: -2px;
    font-weight: 100;
    margin: 0;
}

.carousel-header-content p {
    margin: 0 0 -0.9rem;
    color: var(--theme);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.5rem;
}

.prev-btn {
    background: white;
    color: #4b5563;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.prev-btn:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.next-btn {
    background: linear-gradient(90deg, #d17000 0%, #ee8f00 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.next-btn:hover {
    background: linear-gradient(90deg, #e97c00 0%, #ff9900 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    overflow-x: hidden;
    width: 100%;
    height: 475px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 310px;
    width: 310px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    user-select: none;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
}

.card-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.address-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.address-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.card-title {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-stats a {
    text-decoration: none;
}

.stat-number {
    color: #1f2937;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.action-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    color: white;
    font-size: 1.25rem;
}

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

.btn-yellow { background: #eab308; }
.btn-green { background: #22c55e; }
.btn-blue { background: #3b82f6; }
.btn-emerald { background: #10b981; }
.btn-orange { background: #f97316; }

.gallery {
    height: 500px;
}

.gallery-bg {
    position: absolute;
    width: 100%;
    height: 500px;
}

.gallery-bg img {
    object-position: 50% 10%;
}

.gallery-bg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 3;
    user-select: none;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #001805e8 0%, #002408e5 100%);
}

.gallery-content {
    z-index: 5;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
    color: #ffed85;
}

.gallery-content h2 {
    font-size: 80px;
    font-family: 'Anton', sans-serif;
    font-weight: 100;
    margin-bottom: 0;
}

.gallery-content p {
    margin-top: 0;
}

.gallery-btn {
    margin: auto;
    font-size: 16px;
    font-weight: 800;
    border: none;
    width: 35%;
    max-width: 250px;
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
}

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

.rotator {
    width: 70%;
    margin: auto;
}

.rotator-wheel {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.rotator-wheel p {
    margin: 0 0.5rem;
    padding: 1rem;
    background: var(--theme);
    color: var(--off-white);
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem #7e7e7e5b;
    text-wrap: nowrap;
}

.rotator[data-animated='true'] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.rotator[data-animated='true'] .rotator-wheel {
    width: fit-content;
    animation: rotate 20s linear infinite;
    flex-wrap: nowrap;
    width: fit-content;
}

.reviews-header {
    margin: 3rem auto 0;
    padding: 0 1rem;
    width: 80%;
}

.reviews-header h2 {
    color: #166534;
    font-family: 'Anton';
    font-size: 3rem;
    letter-spacing: -2px;
    font-weight: 100;
    margin: 0;
}

.reviews-header p {
    margin: 0 0 -0.9rem;
    color:#1f2937;
}

.reviews-container {
    width: 80%;
    max-width: 1300px;
    margin: 3rem auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem 1rem;
}

.review-card {
    width: 400px;
    height: 250px;
    min-width: 400px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 5px 5px 10px #4141413a;
    transition: all 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px #ff66006c;
}

.review-quote {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
    background-color: var(--cta);
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.review-quote img {
    height: 50% !important;
    width: 50% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.review-info {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
}

.link-to-google a {
    text-decoration: none;
    font-weight: 700;
}

.review-stars {
    color: gold;
}

.cta-container {
    background: linear-gradient(145deg, #ff871e 0%, #e06106 100%);
    display: flex;
    padding-bottom: 5rem;
    justify-content: center;
    align-items: flex-start;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 95% 85%, 85% 95%, 70% 98%, 50% 100%, 30% 98%, 15% 95%, 5% 85%, 0 80%);
    z-index: -1;
    position: relative;
}   

.cta-container-inner {
    text-align: center;
    margin-top: -1 5rem;
}

.cta-container-inner h2 {
    font-family: 'Anton';
    font-size: 100px;
    color: var(--off-white);
    font-weight: 100;
    margin-bottom: 0;
}

.cta-container-inner h3 {
    color: var(--off-white);
    margin-top: -1rem;
}

.footer-holder {
    min-height: 500px;
    background-color: var(--off-white);
    color: var(--theme);
    z-index: 5;
}

.footer-contact-button {
    height: 5rem;
    width: 90%;
    margin: -4rem auto 0;
    background-color: #fff;
    border-radius: 5px;
    z-index: 5;
    display: flex;
    box-shadow: 0px 5px 15px #9e9e9e6c;
}

.footer-link {
    width: 20%;
    margin: auto;
    align-self: center;
    justify-self: center;
    text-align: center;
    font-weight: 700;
    color: var(--off-white) !important;
}

.footer-holder ul {
    list-style: none;
    padding: 0;

}

.footer-holder ul li {
    margin: 0.5rem 0 0.5rem 0;

}

.footer-holder a {
    color: var(--theme)
}

.footer-top-grid {
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 400px auto auto;
    max-width: 1650px;
    margin: auto;
}

.footer-logo {
    width: 150px;
    height: auto;
    align-self: center;
}

.footer-info {
    display: block;
    padding-top: 3rem;

}

.footer-info-line {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-book {
    padding: 0.25rem 0.5rem;
    color: var(--theme);
    background-color: var(--off-white);
    border: 2px solid var(--theme);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-book:hover {
    background-color: var(--theme);
    color: var(--off-white);
}


.footer-divider {
    border-top: solid 2px #dadada;
    width: 80%;
    margin: auto;
    padding-bottom: 1rem;
}

.footer-divider.top-one {
    border-top: solid 2px #dadada00;
}

.footer-divider p {
    margin-bottom: 0;
}

.info-pic {
    height: 22px;
    width: 22px;
    margin-right: 0.1rem;
}

.img-wrapper {
    display: block;
    overflow: hidden;
}

.img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    user-select: none;
}


/* ------ ABOUT PAGE ------ */
.container-top {
    background-color:#ececec;
}
.content-holder {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

.about-text-container {
    padding: 3rem;
    text-align: center;
}

.larger {
    max-width: 700px !important;
}

.about-text-container h1 {
    font-family: 'Anton';
    color: var(--theme);
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 0;
    letter-spacing: -1px;
    line-height: 0.9;
}

.about-text-container p {
    color: #3b3b3b;
    font-weight: 300;
    margin: 0.5rem auto;
    max-width: 550px;
}

.about-img-1, .about-img-2 {
    height: 400px;
    border-radius: 15px;
}


/* ------ CONTACT FORM PAGE ------ */

.contact-form-container {
    background-color: #195c18;
    background-image: url('../img/contact-form-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 1000px;
}

.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-form {
    background: #aaaaaa5e;
    backdrop-filter: blur(5px);
    position: relative;
    width: 60%;
    margin: 3em auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ffffff21;
    border-radius: 15px;
    text-align: center;
    padding: 1em;
}

.email-form h1 {
    color: var(--white);
    font-weight: 100;
    font-size: 50px;
    color: var(--off-white);
    font-family: 'Anton';
}

.form-group {
    display: flex;
    flex-direction: column;   
    align-items: center;      
    width: 80%;              
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 1280px;
}

.form-row input {
    width: 100%;
    height: 3em;
    margin: 0 0 1rem;
    border: none;
    border-radius: 7px;
    padding: 0 0 0 1rem;
}

.email-body {
    width: 100%;
    max-width: 1280px;
}

.email-body textarea {
    width: 100%;
    border: none;
    border-radius: 7px;
    padding: 1rem 0 0 1rem;
}

.email-form input:focus,
.email-form textarea:focus {
    border: 3px solid var(--cta);
    outline: none;
}

.submit-btn {
    outline: none;
    border: none;
    margin: auto;
    width: 250px;
    font-size: 16px;
    font-weight: 700;
}

/* ------ SERVICES PAGE ------- */

.services-page h1 {
    font-family: 'Anton';
    text-align: center;
    font-size: 70px;
    color: var(--theme);
    font-weight: 100;
    margin-bottom: 0;
}

.services-page h5 {
    font-size: 20px;
    margin: 0 auto 1rem;
    text-align: center;
    color: var(--text-color);
}

.services-container {
    padding: 1rem;
}

.services-page-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    max-width: 1000px;
    margin: auto;
}

.services-page-card h2 {
    font-family: 'Anton';
    font-weight: 100;
    font-size: 32px;
    color: var(--theme);
    margin-bottom: 0;
}

.service-card-left h5 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: left;
}

.services-page-card.img-right {
    background-color: #ededed;
    text-align: left;
}

.services-page-card.img-left {
    flex-direction: row-reverse;
    text-align: right;
}

.services-page-card.img-left  .service-card-btn {
    margin-left: auto;
}

.service-card-img {
    border-radius: 6px;
    height: 100%;
}

.service-card-img img {
    border-radius: 6px;
}

.service-card-btn {
    width: 250px;
    text-align: center;
}

.service-card-links {
    display: flex;
}

.service-see-more {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    color: white;
    text-decoration: none;
    padding: 0 1rem;
    margin: 0 1rem;
}

/* ------ GALLERY PAGE ------ */
.gallery-page h1 {
    font-size: 60px;
    color: var(--theme);
    font-family: 'Anton';
    font-weight: 100;
    width: 70%;
    margin: 0 auto;
}

.collage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:10px;
    width: 70%;
    max-width:1400px;
    margin:0 auto;
    margin-bottom:10px;
}
.collage img {
    max-width:100%;
    height:100%;
    object-fit:cover;
    cursor: pointer;
}
.collage img:nth-of-type(6n+1) {
    grid-row: span 2;
    grid-column: span 2;
}
.collage img:nth-of-type(6n+5) {
    grid-column: span 2;
    grid-row: span 2;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: white;
    z-index: 1005;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-description {
    opacity: 0.8;
    line-height: 1.4;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(231, 73, 0, 0.5);;
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1005;
}

.close-btn:hover {
    background: rgba(231, 73, 0, 0.7);
    transform: scale(1.1);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(231, 73, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1005;
}

.modal-nav-btn:hover {
    background: rgba(231, 73, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev-btn {
    left: 1rem;
}

.modal-next-btn {
    right: 1rem;
}

.modal-counter {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 1005;
}

@supports (-webkit-touch-callout: none) {
    .dropdown > a::after {
        content: "";
        border: solid currentColor;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(-45deg);
        margin-left: 4px;
        transition: all 0.3s ease;
    }

    .dropdown:hover > a::after {
        transform: rotate(45deg);
        color: var(--cta2);
    }
}

/* --------- INDIVIDUAL SERVICE PAGES --------- */

.container-top {
    background-color:#ececec;
}

.content-holder {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

.indser-text-container {
    padding: 3rem;
    text-align: center;
}

.larger {
    max-width: 700px !important;
}

.indser-text-container h1 {
    font-family: 'Anton';
    color: var(--theme);
    font-size: clamp(var(--size5), 5vw, var(--size7));
    font-weight: 100;
    margin-bottom: 0;
    letter-spacing: -2px;
    line-height: 0.95;
}

.indser-text-container p {
    color: #3b3b3b;
    font-weight: 300;
    margin: 0.5rem auto;
    max-width: 550px;
}

.indser-text-container ul {
    width: 50%;
    margin: 2rem auto;
    text-align: left;
    list-style-type: square;
}

.indser-text-container ul > li {
    font-weight: 600;
}

.indser-text-container ul > li::marker {
    color: var(--cta2);
}

.indser-img-1, .indser-img-2 {
    height: 400px;
    border-radius: 15px;
}

.content-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-item img {
    height: 100px;
    width: 100px
}

@keyframes rotate {
    to {
        transform: translateX(-50%)
    }
}

@media screen and (max-width: 1080px) {
    .header-center .img-wrapper {
        display: none;
    }

    .comp-name {
        display: none;
    }

    .header-center {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 1rem;
    }

    .footer-top-grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 50%;
        padding: 1rem 0;
    }

    .page-title-holder {
        flex-direction: column-reverse;
    }

    .page-title {
        width: 80%;
    }

    .service-carousel-holder {
        padding: 0 3rem;
    }

    .gallery, .gallery-bg {
        height: 350px;
    }

    .gallery-content {
        top: 25%;
        transform: translate(-50%, 25%);
    }

    .footer-logo{
        height: 100px;
        width: auto;
        align-self: center;
        justify-self: center;
    }

    .footer-logo img {
        height: 100px;
        width: auto;
        align-self: center;
        justify-self: center;
    }
}

@media screen and (max-width: 850px) {
    .header {
        padding: 0;
        height: 100px;
    }
    
    .header-left {
        height: 100px;
    }
    
    .header-right .link {
        margin: 0 0.25rem;
    }

    .header-right .large {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .title-img {
        min-width: 200px;
    }

    .footer-info {
        padding-top: 0;
    }

    .footer-holder {
        width: 100%;
        font-size: 12px;
    }

    .footer-top-grid {
        padding: 1rem;
        width: 80%;
        justify-content: flex-start;
    }

    .email-form {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .service-name {
        font-size: 11px;
        margin: 0;
    }
    .service-description {
        display: none;
    }

    .cta-container-inner h2 {
        font-size: 30px;
    }

    .cta-container-inner h3 {
        font-size: 16px;
        margin-top: 0;
    }

    .services-page-card, .services-page-card.img-left {
        flex-direction: column-reverse;
        text-align: left;
        gap: 0;
        margin-bottom: 1rem;
    }

    .services-page-card.img-left  .service-card-btn {
        margin-left: 0;
    }

    .services-page-card {
        padding: 0.5rem;
    }

    .service-card-left h2{
        margin: 0;
        text-align: center;
    }

    .service-card-left h5 {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 2rem;
        text-align: center;
    }


    .email-form h1 {
        margin-top: 0;
        font-size: 40px;
    }

    .form-row {
        display: block;
    }

    .form-group {
        width: 95%;
    }

    .service-card-links {
        justify-content: space-evenly;
    }

    .service-see-more {
        margin: 0 0.25rem;
        text-wrap: nowrap;
    }
}

@media screen and (max-width: 700px) {
    .content-holder {
        flex-direction: column;
    }

    .container-bottom > .content-holder {
        flex-direction: column-reverse;
    }

    .about-text-container {
        padding: 0 1rem 1rem;
    }

    .indser-text-container {
        padding: 0 0 2rem;
    }

    .indser-text-container h1 {
        font-size: clamp(var(--size4), 5vw, var(--size5));
    }

    .indser-text-container ul {
        width: 80%;
    }

    .dropdown-menu {
        position: absolute;
        top: -150%;
        left: -120px;
        min-width: 160px;
        background: #444;
        display: none;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
        z-index: 1000;
    }

    .dropdown-menu li a {
        display: block;
        padding: 0.75rem 1rem;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 500px) {
    .header-center {
        width: 150px;
        padding-left: 1rem;
    }

    .contact-label, .contact-value {
        font-size: 14px !important;
    }
    
    .logo {
        width: 60px;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        display: flex;
    }

    .hamburger {
        margin-right: 0;
    }

    .circle {
        height: 600px;
        width: 600px;
        left: -300px;
    }

    .hero-img img {
        object-position: 60%;
    }

    .title-holder {
        left: 10px;
    }

    .title {
        width: 50%;
    } 

    .title h1 {
        font-size: 40px;
    }

    .service-link {
        margin: 0 0.25rem;
    }

    .page-title-holder {
        padding-top: 0;
    }
    
    .page-title {
        flex-direction: column;
        gap: 1rem;
        width: 95%;
    }

    .page-title h2 {
        line-height: 1.2;
        margin-top: 0.1rem;
        font-size: 32px;
    }

    .carousel-header h2 {
        line-height: 1.2;
        margin-top: 0.75rem;
        font-size: 32px;
    }

    .nav-buttons {
        align-self:last baseline;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .service-carousel-holder {
        padding: 0 1rem;
    }

    .reviews-container {
        justify-content: center;
        width: 100%;
    }

    .review-card {
        width: 300px;
        padding: 2rem 0.5rem;
        min-width: unset;
        height: 175px;
        font-size: 12px;
    }

    .review-info p {
        font-size: 12px;
    }

    .gallery, .gallery-bg {
        height: 250px;
    }

    .gallery-content h2 {
        font-size: 50px;
    }

    .rotator-wheel p {
        font-size: 12px;
    }

    .reviews-header h2 {
        line-height: 1.2;
        margin-top: 1rem;
        font-size: 32px;
    }

    .review-card p {
        margin: 0;
    }

    .cta-container-inner {
        padding: 0 1rem;
    }

    .footer-link {
        width: 35%;
    }

}