:root {
    --red-rust: #B7410E;
    --peaty-brown: #704214;
    --frontier-land: #C8B88B;
    --vermillion: #E34234;
    --used-oil: #1A1110;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --shadow-dark: rgba(26, 17, 16, 0.2);
    --shadow-light: rgba(183, 65, 14, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f2f4f5;
}

header {
    background: #02282c;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px var(--shadow-dark);
}

.logo {
    padding: 0;
    font-size: 28px;
    font-weight: bold;
    color: #23e5db;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.logo:hover {
    background: rgba(200, 184, 139, 0.1);
    color: var(--white);
}

.logo-image {
    display: flex;
    align-items: center;
    gap: 1px;
    justify-content: center;
}

.logo-image img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

nav {
    padding: 5px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: var(--frontier-land);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

nav ul li a:hover {
    background: rgba(200, 184, 139, 0.1);
    color: var(--white);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--vermillion);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 80%;
}

#tell {
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 30px;
    z-index: 999;
    background: black;
    border: 1px solid white;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 40px;
}

#tell a {
    text-decoration: none;
    color: var(--frontier-land);
}

.breadcrumbs {
    padding: 10px 20px;
    margin-top: 70px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(112, 66, 20, 0.2);
}

.breadcrumbs-content {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs a {
    color: var(--red-rust);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: var(--peaty-brown);
}

.hero {
    background: linear-gradient(90deg, rgba(24, 101, 171, 1) 0%, rgba(127, 188, 231, 1) 50%, rgba(63, 134, 198, 1) 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 40px;
    margin-top: 88px;
    border: 1px solid #23e5db;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(26, 17, 16, 0.5);
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: white;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--frontier-land);
    color: var(--used-oil);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px var(--shadow-dark);
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--vermillion);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn:hover {
    color: var(--white);
    box-shadow: 0 10px 30px rgba(227, 66, 52, 1);
    animation: pulse 2s infinite;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--vermillion) 0%, var(--red-rust) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(227, 66, 52, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 66, 52, 0.4);
    background: linear-gradient(135deg, var(--red-rust) 0%, var(--vermillion) 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

section {
    padding: 50px;
    max-width: 1700px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--peaty-brown);
    position: relative;
    padding-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--peaty-brown);
    position: relative;
    padding-bottom: 20px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--red-rust) 0%, var(--vermillion) 100%);
    border-radius: 2px;
}

h3 {
    color: var(--red-rust);
    margin-bottom: 15px;
}

.about,
.about2 {
    padding: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
    gap: 50px;
    align-items: center;
    border-radius: 15px;
    border-top: 1px solid #23e5db;
    border-left: 1px solid #23e5db;
    border-right: 1px solid #23e5db;
    background: linear-gradient(135deg, #f0fdfc 0%, #ffffff 100%);
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.about-text {
    grid-area: text;
    padding: 20px;
}

.about-image {
    grid-area: image;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.about-text p {
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #23e5db, transparent);
    border-radius: 2px;
}

.about-content2 {
    padding: 20px 40px 40px;
    border-radius: 15px;
    border-bottom: 1px solid #23e5db;
    border-left: 1px solid #23e5db;
    border-right: 1px solid #23e5db;
    background: linear-gradient(135deg, #f0fdfc 0%, #ffffff 100%);
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.services-heading {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.services-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: left;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #23e5db;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f0fdfc 0%, #ffffff 100%);
    border: 1px solid #23e5db;
    border-radius: 15px;
    padding: 25px 30px;
    margin: 30px 0;
    text-align: center;
}

.cta-box p {
    margin-bottom: 15px;
}

.cta-highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0d9488;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d9488;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid #23e5db;
    border-radius: 10px;
    margin-top: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background-color: #23e5db;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(35, 229, 219, 0.3);
}

.owner-info {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(35, 229, 219, 0.3);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(112, 66, 20, 0.1);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--vermillion) 0%, var(--red-rust) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: var(--frontier-land);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--vermillion) 0%, var(--red-rust) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.service-card h3 {
    color: var(--peaty-brown);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq {
    border-radius: 15px;
    padding: 80px 20px;
    border: 1px solid #23e5db;
    background: #f8fbfc;
    margin-bottom: 40px;
}

.faq-item {
    background: rgb(222, 231, 251);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 4px solid var(--vermillion);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-light);
    background: #fff6d9;
}

.faq-question {
    font-weight: bold;
    color: var(--peaty-brown);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonials {
    background: #f8fbfc;
    padding: 80px 20px;
    border: 1px solid #23e5db;
    border-radius: 15px;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(112, 66, 20, 0.1);
    position: relative;
    transition: all 0.3s;
    border-top: 3px solid var(--vermillion);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--red-rust);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    padding-top: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--peaty-brown);
}

.stars {
    color: var(--vermillion);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact {
    background: #f8fbfc;
    border: 1px solid #23e5db;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    padding: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 3px solid var(--vermillion);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-light);
    border-left-color: var(--red-rust);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--vermillion);
    width: 30px;
}

.contact-item strong {
    color: var(--peaty-brown);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--red-rust);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(112, 66, 20, 0.1);
    border-top: 4px solid var(--vermillion);
    position: relative;
}

.contact-form h3 {
    color: var(--peaty-brown);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--peaty-brown);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vermillion);
    box-shadow: 0 0 0 3px rgba(227, 66, 52, 0.1);
    background: #FFFCFA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.notification-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 450px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification-banner.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #d4edda;
    color: #28a745;
}

.notification-error .notification-icon {
    background: #f8d7da;
    color: #dc3545;
}

.notification-text {
    flex: 1;
}

.notification-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

.notification-progress {
    height: 4px;
    background: #e9ecef;
}

.notification-success .notification-progress {
    background: linear-gradient(90deg, #28a745, #20c997);
    animation: progress 5s linear forwards;
}

.notification-error .notification-progress {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    animation: progress 5s linear forwards;
}

.map-section {
    padding: 80px 20px;
    background: #ecebe9;
    border-radius: 15px;
    margin-bottom: 40px;
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(112, 66, 20, 0.15);
    border: 3px solid var(--frontier-land);
}

footer {
    background: linear-gradient(168deg, rgba(8, 87, 161, 1) 0%, rgba(1, 17, 89, 1) 100%);
    color: var(--frontier-land);
    padding: 60px 20px 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(168deg, rgba(8, 87, 161, 1) 0%, rgba(1, 17, 89, 1) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--frontier-land);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--vermillion);
}

.footer-section p {
    color: rgba(200, 184, 139, 0.9);
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: rgba(200, 184, 139, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--vermillion);
}

.footer-section ul li a:hover::before {
    left: -5px;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 184, 139, 0.2);
}

.footer-bottom p {
    color: rgba(200, 184, 139, 0.9);
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--frontier-land);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: all 0.3s;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.2);
    color: var(--vermillion);
    filter: drop-shadow(0 5px 10px rgba(227, 66, 52, 0.4));
}

/* ==================== ANIMATIONS ==================== */

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 66, 52, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(227, 66, 52, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 66, 52, 0);
    }
}

@keyframes vibrate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    10% {
        transform: translate(-2px, -1px) rotate(-1deg);
    }
    20% {
        transform: translate(2px, 1px) rotate(1deg);
    }
    30% {
        transform: translate(-2px, 1px) rotate(-1deg);
    }
    40% {
        transform: translate(2px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-2px, -1px) rotate(-1deg);
    }
    60% {
        transform: translate(2px, 1px) rotate(1deg);
    }
    70% {
        transform: translate(-2px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(2px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(-2px, -1px) rotate(-1deg);
    }
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ==================== UTILITY CLASSES ==================== */

.gradient-text {
    background: linear-gradient(135deg, var(--vermillion) 0%, var(--red-rust) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--vermillion);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.spinner {
    border: 3px solid var(--frontier-land);
    border-top: 3px solid var(--vermillion);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ==================== CHECKBOX & FORM ELEMENTS ==================== */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.privacy-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #764ba2;
    text-decoration: none;
}

.checkbox-group:has(input:invalid:not(:focus)) {
    border-color: #dc3545;
}

.checkbox-group:has(input:valid) {
    border-color: #28a745;
}

.form-required-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.phone-container {
    display: inline-block;
}

.vibrating-phone {
    display: inline-block;
    animation: vibrate 0.3s infinite;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-group input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #667eea;
        border-radius: 4px;
        background: white;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .checkbox-group input[type="checkbox"]:checked {
        background: #667eea;
        border-color: #667eea;
    }

    .checkbox-group input[type="checkbox"]:checked::after {
        content: '\2713';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

    .checkbox-group input[type="checkbox"]:hover {
        border-color: #764ba2;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .checkbox-group input[type="checkbox"]:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    }
}

/* ==================== COMING SOON OVERLAY ==================== */

.contact-form-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
}

.contact-form-wrapper.coming-soon .contact-form {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
    animation: slideUp 0.6s ease;
    max-width: 90%;
}

.coming-soon-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.coming-soon-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.coming-soon-loader {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.coming-soon-loader span {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.coming-soon-loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.coming-soon-loader span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ==================== GALLERY / SLIDER ==================== */

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 1700px;
}

.gallery {
    padding: 0;
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

section:nth-child(3) {
    padding: 0;
    margin-bottom: 40px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.slide-content {
    position: absolute;
    bottom: 80px;
    right: 40px;
    z-index: 2;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
	width: 0;
    height: 4px;
    background: linear-gradient(90deg, #5e81f4, #a855f7, #ec4899);
    z-index: 10;
    border-radius: 0 2px 2px 0;
    animation: progress 7s linear forwards;
}

.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    z-index: 10;
}

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

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

/* ==================== MEDIA QUERIES ==================== */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "image";
        gap: 30px;
    }

    .about-image {
        height: auto;
        min-height: 300px;
        max-height: none;
        overflow: visible;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.3rem 0.8rem;
    }

    nav ul li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .about-image {
        height: auto;
        min-height: 200px;
        max-height: none;
        overflow: visible;
        padding: 20px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }

    .about-text {
        padding: 15px;
    }

    .about-content2 {
        padding: 20px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 20px 15px;
    }

    .phone-link {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        gap: 30px;
    }

    .social-links a {
        margin: 0 10px;
        font-size: 1.5rem;
    }

    .gallery {
        height: 350px;
        border-radius: 15px;
    }

    .slide-content h2 {
        font-size: 1.3rem;
    }

    .slide-content {
        bottom: 60px;
        left: 20px;
        right: 20px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .notification-banner {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .contact-form-wrapper {
        max-width: 95%;
        margin: 0 auto;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .coming-soon-content h2 {
        font-size: 1.5rem;
    }

    .coming-soon-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 15px 80px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 60px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .about-image {
        height: auto;
        min-height: 150px;
        padding: 15px;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-text {
        padding: 10px;
    }

    .services-list li {
        font-size: 0.95rem;
    }

    .phone-link {
        width: 100%;
        justify-content: center;
    }

    .checkbox-group {
        flex-direction: column;
    }

    .checkbox-group input[type="checkbox"] {
        margin-bottom: 10px;
    }

    .checkbox-label {
        font-size: 13px;
    }
}

@media print {
    header,
    footer,
    .social-links,
    .map-section,
    .contact-form {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}