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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #14213D;
    background-color: #F6FAFF;
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-weight: 400;
    color: #5A6C84;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    min-height: 48px;
}

.btn--primary {
    background: linear-gradient(135deg, #0052D4, #00C6A7);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 212, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 212, 0.4);
}

.btn--secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
    background: transparent;
    color: #0052D4;
    border-color: #0052D4;
}

.btn--outline:hover {
    background: #0052D4;
    color: white;
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(246, 250, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(246, 250, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 82, 212, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0052D4;
}

.nav__logo {
    width: 40px;
    height: 40px;
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    color: #5A6C84;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #0052D4;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #0052D4, #00C6A7);
    border-radius: 2px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #0052D4;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 212, 0.8), rgba(0, 198, 167, 0.6));
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.hero__title {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__feature-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hexagonal decorative elements */
.hero__hexagon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 166, 48, 0.2), rgba(0, 198, 167, 0.2));
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    animation: float 6s ease-in-out infinite;
}

.hero__hexagon--1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero__hexagon--2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    color: #14213D;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #5A6C84;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
}

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

.service__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 82, 212, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 82, 212, 0.15);
}

.service__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.service__card:hover .service__image img {
    transform: scale(1.05);
}

.service__content {
    padding: 2rem;
}

.service__title {
    color: #14213D;
    margin-bottom: 0.75rem;
}

.service__desc {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Water Line Animation */
.water-line {
    padding: 2rem 0;
    overflow: hidden;
}

.water-line__svg {
    width: 100%;
    height: 100px;
}

.water-line__path {
    stroke-dasharray: 10 5;
    animation: waterFlow 3s linear infinite;
}

@keyframes waterFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 45; }
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F6FAFF, #E8F4FF);
}

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

.package__card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package__card:hover {
    transform: translateY(-5px);
    border-color: #00C6A7;
}

.package__card--featured {
    border-color: #0052D4;
    transform: scale(1.05);
}

.package__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFA630, #FF8C30);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package__header {
    margin-bottom: 2rem;
}

.package__title {
    color: #14213D;
    margin-bottom: 1rem;
}

.package__price {
    font-size: 1rem;
    color: #5A6C84;
}

.package__price span {
    font-size: 2rem;
    font-weight: 700;
    color: #0052D4;
    display: block;
}

.package__features {
    list-style: none;
    margin-bottom: 2rem;
}

.package__features li {
    padding: 0.5rem 0;
    color: #5A6C84;
    position: relative;
    padding-left: 1.5rem;
}

.package__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C6A7;
    font-weight: bold;
}

.packages__note {
    text-align: center;
    font-style: italic;
    color: #5A6C84;
    font-size: 0.875rem;
}

/* Zones Section */
.zones {
    padding: 6rem 0;
}

.zones__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zones__text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.zones__text .section__subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.zones__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zone__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 82, 212, 0.08);
}

.zone__icon {
    font-size: 1.5rem;
}

.zones__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 82, 212, 0.15);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F6FAFF, #E8F4FF);
}

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

.process__step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 82, 212, 0.1);
    transition: transform 0.3s ease;
}

.process__step:hover {
    transform: translateY(-5px);
}

.process__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0052D4, #00C6A7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process__title {
    color: #14213D;
    margin-bottom: 1rem;
}

.process__desc {
    color: #5A6C84;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
}

.gallery__slider {
    max-width: 800px;
    margin: 0 auto;
}

.gallery__slide {
    display: none;
}

.gallery__slide.active {
    display: block;
}

/* Comparison Slider */
.comparison__slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 82, 212, 0.15);
}

.comparison__before,
.comparison__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison__before img,
.comparison__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison__after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.comparison__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: ew-resize;
}

.comparison__button {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.comparison__button::before,
.comparison__button::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: #0052D4;
}

.comparison__button::before {
    left: 10px;
}

.comparison__button::after {
    right: 10px;
}

.comparison__label {
    position: absolute;
    top: 20px;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.comparison__before .comparison__label {
    left: 20px;
}

.comparison__after .comparison__label {
    right: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F6FAFF, #E8F4FF);
}

.testimonials__slider {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    min-height: 200px;
}

.testimonial__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial__slide.active {
    opacity: 1;
    position: relative;
}

.testimonial__content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 82, 212, 0.1);
}

.testimonial__text {
    font-size: 1.125rem;
    color: #14213D;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.testimonial__name {
    font-weight: 600;
    color: #0052D4;
}

.testimonial__location {
    font-size: 0.875rem;
    color: #5A6C84;
}

.testimonials__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonials__btn {
    width: 50px;
    height: 50px;
    border: 2px solid #0052D4;
    background: transparent;
    color: #0052D4;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__btn:hover {
    background: #0052D4;
    color: white;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 1rem;
}

.faq__question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #14213D;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__icon {
    font-size: 1.5rem;
    color: #0052D4;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq__answer p {
    color: #5A6C84;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F6FAFF, #E8F4FF);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 82, 212, 0.1);
}

.contact__icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.contact__details h4 {
    color: #14213D;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact__details a,
.contact__details span {
    color: #0052D4;
    font-weight: 500;
}

/* Form Styles */
.contact__form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 82, 212, 0.1);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group--checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: #0052D4;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.1);
}

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

.form__group--checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form__group--checkbox label {
    color: #5A6C84;
    font-size: 0.875rem;
    line-height: 1.4;
}

.form__group--checkbox label a {
    color: #0052D4;
    text-decoration: underline;
}

.form__error {
    display: block;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Contact Success */
.contact__success {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 82, 212, 0.1);
}

.contact__success.show {
    display: block;
}

.success__content {
    max-width: 400px;
    margin: 0 auto;
}

.success__icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.success__content h3 {
    color: #14213D;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #14213D;
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer__name {
    font-weight: 700;
    font-size: 1.25rem;
}

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

.footer__group h4 {
    color: #00C6A7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer__group ul {
    list-style: none;
}

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

.footer__group ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer__group ul li a:hover {
    color: #00C6A7;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal__content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #5A6C84;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal__close:hover {
    background: #F3F4F6;
    color: #14213D;
}

.modal__content h3 {
    color: #14213D;
    margin-bottom: 1.5rem;
    margin-right: 2rem;
}

.modal__content ul {
    list-style: none;
}

.modal__content ul li {
    padding: 0.75rem 0;
    color: #5A6C84;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #F3F4F6;
}

.modal__content ul li:last-child {
    border-bottom: none;
}

.modal__content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00C6A7;
    font-weight: bold;
}

/* Legal Pages */
.legal {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.legal__content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 82, 212, 0.1);
}

.legal__intro {
    font-style: italic;
    color: #5A6C84;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal__section {
    margin-bottom: 2.5rem;
}

.legal__section h2 {
    color: #14213D;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8F4FF;
}

.legal__section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal__section ul li {
    margin-bottom: 0.5rem;
    color: #5A6C84;
}

.legal__back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .zones__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(246, 250, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding: 6rem 2rem 2rem;
        z-index: 999;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__features {
        flex-direction: column;
        align-items: center;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .packages__grid {
        grid-template-columns: 1fr;
    }
    
    .package__card--featured {
        transform: none;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
    }
    
    .comparison__slider {
        height: 300px;
    }
    
    .section__header {
        margin-bottom: 2.5rem;
    }
    
    .legal__content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero__content {
        padding: 1rem 0;
    }
    
    .service__card {
        min-width: 280px;
    }
    
    .contact__form {
        padding: 1.5rem;
    }
    
    .modal__content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .legal__content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 320px) {
    .hero__buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .service__content {
        padding: 1.5rem;
    }
    
    .contact__item {
        padding: 1.5rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero__content {
        padding: 4rem 0;
    }
    
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packages__grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
}