/* Base styles */
:root {
    --dark-blue: #141c2b;
    --sand-gold: #e0b973;
    --white: #ffffff;
    --light-gray: #d8d8d8;
    --button-color: #ffb400;
    --button-hover: #e0a200;
    --transition: all 0.3s ease;
    --border-radius: 0;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --accent-gradient: linear-gradient(135deg, #e0b973 0%, #ffb400 100%);
    --card-img-height: 180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

body {
    font-family: 'Montserrat', 'Helvetica', Arial, sans-serif;
    background-color: var(--dark-blue);
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--sand-gold);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

a:not(.btn):hover:after {
    width: 100%;
}

a:hover {
    color: var(--button-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h2:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 calc(100% - 30px));
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gradient);
    color: var(--dark-blue);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--button-hover);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: var(--dark-blue);
}

.btn:hover:before {
    left: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--button-color);
    color: var(--button-color);
}

.btn-outline:hover {
    background: var(--button-color);
    color: var(--dark-blue);
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 28, 43, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    color: var(--sand-gold);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: lowercase;
    position: relative;
}

.logo a:after {
    display: none;
}

.logo a:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--accent-gradient);
    bottom: -5px;
    left: 0;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav ul li {
    margin-left: 40px;
    position: relative;
}

.main-nav ul li a {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.main-nav ul li a:hover {
    color: var(--sand-gold);
}

/* Mobile Menu */
.menu-toggle {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    z-index: -1;
}

.hamburger-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 2000;
}

.hamburger-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-btn span:nth-child(1) {
    top: 0;
}

.hamburger-btn span:nth-child(2) {
    top: 10px;
}

.hamburger-btn span:nth-child(3) {
    top: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(rgba(20, 28, 43, 0.8), rgba(20, 28, 43, 0.8)), url('../img/sZ3R7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark-blue);
    clip-path: polygon(0 60%, 100% 100%, 0 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s forwards;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
    opacity: 0;
    padding: 20px 50px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    height: 300px;
    border-radius: 12px;
    background-image: url('../img/BWPDt.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}
option {
    background-color: #2a323f;
}
.about-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 185, 115, 0.3) 0%, rgba(255, 180, 0, 0) 100%);
    z-index: 1;
}

.about-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-right: 4px solid var(--sand-gold);
    border-bottom: 4px solid var(--sand-gold);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 0 0 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 185, 115, 0.1);
    display: flex;
    flex-direction: column;
}

.advantage-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 2;
}

.advantage-card:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.advantage-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow);
    background-color: rgba(255, 255, 255, 0.05);
}

.advantage-image {
    height: var(--card-img-height);
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    position: relative;
}

.advantage-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(20, 28, 43, 1), rgba(20, 28, 43, 0));
}

.advantage-card h3 {
    padding: 0 20px;
    margin-bottom: 15px;
}

.advantage-card p {
    padding: 0 20px;
    margin-bottom: 0;
}

.advantage-image-1 {
    background-image: url('../img/UqDA9.jpg');
}

.advantage-image-2 {
    background-image: url('../img/TL2np.jpg');
}

.advantage-image-3 {
    background-image: url('../img/BWPDt.jpg');
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 0 0 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 185, 115, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--accent-gradient);
    opacity: 0.1;
    top: -50%;
    left: -50%;
    transform: rotate(35deg);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover:after {
    transform: rotate(35deg) translateY(-30%);
    opacity: 0.2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-image {
    height: var(--card-img-height);
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    position: relative;
}

.service-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(20, 28, 43, 1), rgba(20, 28, 43, 0));
}

.service-card h3 {
    padding: 0 20px;
    margin-bottom: 15px;
}

.service-card p {
    padding: 0 20px;
}

.service-card ul {
    text-align: left;
    margin: 20px;
    margin-bottom: 0;
    list-style-position: inside;
}

.service-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.service-image-1 {
    background-image: url('../img/sZ3R7.jpg');
}

.service-image-2 {
    background-image: url('../img/UqDA9.jpg');
}

.service-image-3 {
    background-image: url('../img/TL2np.jpg');
}

/* Testimonials Section */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid rgba(224, 185, 115, 0.1);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(224, 185, 115, 0.3);
}

.testimonial-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-item:hover:before {
    transform: scaleX(1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    flex: 1;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    position: absolute;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 0;
    color: var(--sand-gold);
    opacity: 0.3;
}

.testimonial-text:before {
    left: 0;
    top: 20px;
}

.testimonial-text:after {
    right: 0;
    bottom: -10px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-position {
    color: var(--sand-gold);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    position: relative;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: var(--transition);
    border-left: 5px solid transparent;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--sand-gold);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--sand-gold);
    transition: var(--transition);
}

.faq-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.01);
    border-left: 5px solid transparent;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 20px 30px;
    border-left: 5px solid var(--sand-gold);
}

.faq-checkbox:checked ~ .faq-question {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--sand-gold);
}

.faq-checkbox:checked ~ .faq-question:after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(224, 185, 115, 0.1);
}

.contact-form:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sand-gold);
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--sand-gold);
    background-color: rgba(255, 255, 255, 0.07);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e0b973' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 15px;
    margin-top: 5px;
    accent-color: var(--sand-gold);
}

.form-check label {
    font-size: 0.9rem;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #ff6b81;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--sand-gold);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: lowercase;
    position: relative;
}

.footer-logo:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--accent-gradient);
    bottom: -10px;
    left: 0;
}

.footer-info p {
    opacity: 0.8;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.footer-contact h3:after,
.footer-links h3:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    bottom: 0;
    left: 0;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-contact ul li,
.footer-links ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.footer-contact ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--sand-gold);
}

.footer-links ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sand-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(20, 28, 43, 0.95);
    padding: 8px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    border-top: 5px solid var(--sand-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 30px;
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Policy pages */
.policy-page {
    padding: 150px 0 100px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 185, 115, 0.1);
    position: relative;
}

.policy-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
}

.policy-container h2 {
    margin-top: 50px;
    font-size: 1.8rem;
    color: var(--sand-gold);
}

.policy-container h2:after {
    left: 0;
    transform: none;
    width: 50px;
    background: var(--white);
    opacity: 0.2;
}

.policy-container p + h2 {
    margin-top: 50px;
}

/* Thank you page */
.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 100px 0;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 185, 115, 0.1);
    position: relative;
    box-shadow: var(--box-shadow);
}

.thank-you-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.thank-you-container:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
}

.thank-you-container h1 {
    margin-bottom: 30px;
    font-size: 3rem;
}

.thank-you-container .btn {
    margin-top: 20px;
}

/* Add icon styles for footer */
.icon-phone:before {
    content: "📞";
}

.icon-email:before {
    content: "✉️";
}

.icon-location:before {
    content: "📍";
}

/* Animation classes */
.fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 1s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .about-content,
    .advantages-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        height: 200px;
        order: -1;
    }
    
    section {
        padding: 80px 0;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1400;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Media Queries for Responsive Navigation */
@media (max-width: 768px) {
    /* Menu Overlay when active */
    .menu-toggle:checked ~ .menu-overlay {
        visibility: visible;
        opacity: 1;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    /* Mobile Navigation Styles */
    .hamburger-btn {
        display: block;
    }
    
    .menu-toggle {
        position: absolute;
        opacity: 0;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-blue);
        transition: var(--transition);
        z-index: 1500;
        padding: 80px 30px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        border-left: 5px solid var(--sand-gold);
        overflow-y: auto;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 25px 0;
    }
    
    .main-nav ul li label {
        width: 100%;
        display: block;
        cursor: pointer;
    }
    
    .main-nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 5px 0;
        width: 100%;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    /* Animated Hamburger Icon */
    .menu-toggle:checked ~ .hamburger-btn span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }
    
    .menu-toggle:checked ~ .hamburger-btn span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .menu-toggle:checked ~ .hamburger-btn span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }
    
    .about-content,
    .advantages-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-form,
    .policy-container,
    .thank-you-container {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .policy-container h1 {
        font-size: 2.2rem;
    }
    
    .policy-container h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .testimonial-text:before,
    .testimonial-text:after {
        font-size: 3rem;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .testimonial-slider {
        max-width: 100%;
    }
} 