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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    background: #FEFEFE;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
}

.logo__text {
    color: #8B4513;
    position: relative;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.logo__accent {
    color: #D2691E;
    font-weight: 600;
    position: relative;
    margin-left: -2px;
    text-shadow: 0 2px 4px rgba(210, 105, 30, 0.2);
}

.logo__accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.header.scroll-header {
    background: rgba(254, 254, 254, 0.98);
    box-shadow: 0 4px 30px rgba(139, 69, 19, 0.1);
}

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

.nav__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav__tagline {
    font-size: 0.7rem;
    color: #D2691E;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

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

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

.nav__link {
    font-size: 1.2rem;
    font-weight: 500;
    color: #4A4A4A;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.nav__link:hover,
.nav__link.active-link {
    color: #8B4513;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #8B4513;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

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

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

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

.nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: #8B4513;
    cursor: pointer;
    z-index: 1002;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    font-weight: 600;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.4);
}

.btn--outline {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.1);
}

.btn--outline:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

.btn--product {
    background: linear-gradient(135deg, #D2691E, #CD853F);
    color: white;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

.btn--product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(210, 105, 30, 0.3);
}

.btn--large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn__icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5E6D3 50%, #E6D2B5 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(210, 105, 30, 0.05) 0%, transparent 50%);
}

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

.hero__content {
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title-accent {
    color: #8B4513;
    position: relative;
    text-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.hero__description {
    font-size: 1.2rem;
    color: #5D4E37;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
}

.hero__feature-icon {
    font-size: 1.5rem;
}

.hero__feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8B4513;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid rgba(139, 69, 19, 0.1);
}

.hero__img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(139, 69, 19, 0.25);
}

.hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.decoration--1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.decoration--2 {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

.decoration--3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 3s;
}

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

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

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

.section__subtitle {
    font-size: 1.1rem;
    color: #5D4E37;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Collections Section */
.collections {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
}

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

.collection__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.05);
}

.collection__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

.collection__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.collection__card:hover .collection__img {
    transform: scale(1.1);
}

.collection__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.7), rgba(210, 105, 30, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    padding: 2rem;
}

.collection__card:hover .collection__overlay {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.6));
}

.collection__content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.collection__card:hover .collection__content {
    transform: translateY(0);
}

.collection__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.collection__desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.collection__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #FEFEFE;
}

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

.product__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(139, 69, 19, 0.05);
}

.product__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.12);
}

.product__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #D2691E, #CD853F);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product__image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.product__card:hover .product__img {
    transform: scale(1.05);
}

.product__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product__card:hover .product__overlay {
    opacity: 1;
}

.product__btn {
    background: white;
    color: #8B4513;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.product__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.product__content {
    padding: 2rem;
    text-align: left;
}

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

.star {
    color: #FFD700;
    font-size: 1rem;
}

.product__rating-text {
    color: #888;
    font-size: 0.9rem;
}

.product__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.product__desc {
    color: #5D4E37;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product__price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product__price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

.product__price-new {
    color: #8B4513;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.product__price-unit {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #E6D2B5 100%);
}

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

.service__card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.05);
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.12);
}

.service__icon {
    margin-bottom: 2rem;
}

.service__icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.service__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service__description {
    color: #5D4E37;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #FEFEFE;
}

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

.testimonial__card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(139, 69, 19, 0.05);
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.12);
}

.testimonial__rating {
    margin-bottom: 1.5rem;
}

.testimonial__text {
    font-style: italic;
    color: #5D4E37;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonial__author-info h4 {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.testimonial__title {
    color: #D2691E;
    font-size: 0.95rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta__description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

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

.cta .btn--primary {
    background: white;
    color: #8B4513;
}

.cta .btn--primary:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
}

.cta .btn--outline {
    border-color: white;
    color: white;
}

.cta .btn--outline:hover {
    background: white;
    color: #8B4513;
}

/* Footer */
.footer {
    background: #2C1810;
    color: #E6D2B5;
    padding: 4rem 0 2rem;
    border-top: 3px solid #8B4513;
}

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

.footer__section h3 {
    color: #D2691E;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(210, 105, 30, 0.2);
}

.footer__logo .logo {
    margin-bottom: 1rem;
}

.footer__logo .logo__text,
.footer__logo .logo__accent {
    color: #D2691E;
}

.footer__tagline {
    color: #CD853F;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.footer__description {
    color: #B8A082;
    line-height: 1.7;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #B8A082;
}

.footer__contact-icon {
    font-size: 1.2rem;
    color: #D2691E;
}

.footer__links {
    list-style: none;
}

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

.footer__link {
    color: #B8A082;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #D2691E;
    text-shadow: 0 2px 4px rgba(210, 105, 30, 0.2);
}

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

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #B8A082;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: #CD853F;
    text-shadow: 0 2px 4px rgba(205, 133, 63, 0.2);
}

.footer__social-icon {
    font-size: 1.2rem;
    color: #D2691E;
}

.footer__bottom {
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: #8B7355;
    font-size: 0.9rem;
}

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

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

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        backdrop-filter: none;
    }

    .nav__list {
        flex-direction: row;
        gap: 2.5rem;
    }

    .nav__link {
        font-size: 1rem;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }
}

@media (max-width: 767px) {
    .collections__grid {
        grid-template-columns: 1fr;
    }

    .collection__card {
        height: 350px;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

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

    .hero__buttons {
        justify-content: center;
    }

    .section__title {
        font-size: 2rem;
    }

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

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

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

    .cta__title {
        font-size: 2rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .cta__title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero__features {
        gap: 1rem;
    }

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

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

    .product__price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}