/* ===== CSS Variables ===== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.section {
    padding: 5rem 0;
}

.section__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav__logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav__logo a:hover {
    color: var(--primary-dark);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

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

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    color: white;
}

.hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: visible;
}

.hero__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 28px;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero__image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero__img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    animation: fadeInUp 0.8s ease 0.3s both, floatImage 6s ease-in-out infinite 1s;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
    border-radius: 30px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    overflow: hidden;
}

.hero__image:hover .hero__img {
    transform: translateY(-8px) scale(1.03);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.hero__image:hover::before {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.08) 100%);
}

.hero__image:hover::after {
    opacity: 1;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn--primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn--secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn--package {
    width: 100%;
    background-color: #25d366;
    color: white;
    margin-top: auto;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn--package svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn--package:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.btn--package:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* ===== Services Section ===== */
.services {
    background-color: var(--bg-light);
}

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

.service__card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Packages Section ===== */
.packages {
    background-color: var(--bg-white);
}

.package__category {
    margin-bottom: 4rem;
}

.package__category:last-child {
    margin-bottom: 0;
}

.package__category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.package__card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.package__card--popular {
    border-color: var(--primary-color);
    border-width: 3px;
}

.package__badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.package__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.package__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.package__currency {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
}

.package__amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package__features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
    position: relative;
    min-height: 0;
}

.package__features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    transition: opacity 0.3s ease;
}

.package__features li.feature-hidden {
    display: none !important;
}

.package__card.expanded .package__features li.feature-hidden {
    display: list-item !important;
}

.package__toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package__toggle:hover {
    color: var(--primary-dark);
}

.package__toggle svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.package__card.expanded .package__toggle svg {
    transform: rotate(180deg);
}

.package__toggle span {
    display: inline-block;
}

.package__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===== Why Choose Us Section ===== */
.why-choose {
    background-color: var(--bg-light);
}

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

.why-choose__card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.why-choose__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.why-choose__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.why-choose__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-choose__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

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

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

.contact__info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    color: white;
    box-shadow: var(--shadow-xl);
}

.contact__info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact__info-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact__info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    backdrop-filter: blur(10px);
}

.contact__info-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__info-value {
    font-size: 1.125rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.contact__info-value:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.contact__form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact__input-group {
    position: relative;
}

.contact__label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact__input-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--text-light);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.contact__input-icon--textarea {
    top: 1.25rem;
    left: 1.25rem;
}

.contact__input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.contact__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact__input-group:focus-within .contact__input-icon {
    color: var(--primary-color);
}

.contact__textarea {
    padding-top: 1rem;
    padding-left: 3.5rem;
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact__submit {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

.contact__submit svg {
    transition: transform 0.3s ease;
}

.contact__submit:hover svg {
    transform: translateX(4px);
}

.contact__success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(99, 102, 241, 0.2);
    animation: fadeInUp 0.6s ease;
}

.contact__success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: scaleIn 0.5s ease 0.2s both;
}

.contact__success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact__success-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact__success-btn {
    margin-top: 1rem;
}

.contact__form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.floating-btn--whatsapp {
    background-color: #25d366;
    color: white;
    animation-delay: 0s;
}

.floating-btn--call {
    background-color: var(--primary-color);
    color: white;
    animation-delay: 1.5s;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__toggle {
        display: flex;
    }

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

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

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

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__image {
        display: flex;
        height: 320px;
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .hero__image::before {
        border-radius: 20px;
    }
    
    .hero__image::after {
        border-radius: 20px;
    }
    
    .hero__img {
        max-width: 100%;
        height: auto;
        border-radius: 24px;
        padding: 1.25rem;
        animation: fadeInUp 0.8s ease 0.3s both;
        overflow: hidden;
    }

    .section__title {
        font-size: 2rem;
    }

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

    .contact__container {
        /* padding: 0 1rem; */
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact__info {
        padding: 2rem;
        order: 2;
    }

    .contact__info-title {
        font-size: 1.75rem;
    }

    .contact__info-text {
        font-size: 1rem;
    }

    .contact__info-items {
        gap: 1.5rem;
    }

    .contact__info-icon {
        width: 45px;
        height: 45px;
    }

    .contact__form {
        padding: 2rem;
        order: 1;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    .service__card,
    .why-choose__card {
        padding: 1.5rem;
    }

    .package__card {
        padding: 1.5rem;
    }

    .package__amount {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .contact__wrapper {
        gap: 2rem;
    }

    .contact__info {
        padding: 1.5rem;
    }

    .contact__info-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact__info-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .contact__info-items {
        gap: 1.25rem;
    }

    .contact__info-item {
        gap: 1rem;
    }

    .contact__info-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .contact__info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact__info-label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }

    .contact__info-value {
        font-size: 1rem;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .contact__form-fields {
        gap: 1.5rem;
    }

    .contact__label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .contact__input {
        padding: 0.875rem 1.25rem 0.875rem 3rem;
        font-size: 0.9375rem;
    }

    .contact__input-icon {
        left: 1rem;
        width: 18px;
        height: 18px;
    }

    .contact__input-icon--textarea {
        top: 1rem;
        left: 1rem;
    }

    .contact__textarea {
        padding-left: 3rem;
        padding-top: 0.875rem;
        min-height: 120px;
    }

    .contact__submit {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .contact__success-message {
        padding: 2rem 1.5rem;
    }

    .contact__success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .contact__success-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact__success-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact__success-btn {
        width: 100%;
        max-width: 280px;
    }
}
