/* ===== STARHOUSE Landing Page Styles ===== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-color: #FF6B6B;
    --primary-dark: #E85555;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --purple-color: #A855F7;
    --blue-color: #3B82F6;
    --orange-color: #F97316;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A39E 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-rainbow: linear-gradient(90deg, #FF6B6B, #FFE66D, #4ECDC4, #3B82F6, #A855F7);
    
    /* Neutral Colors */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    
    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 30px rgba(255, 107, 107, 0.3);
    --shadow-secondary: 0 10px 30px rgba(78, 205, 196, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Section Base ===== */
.section {
    padding: var(--section-padding) 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-xl);
}

.section__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section__text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn--white {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.btn--outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

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

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 32px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

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

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

.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

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

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero__description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat__label {
    font-size: 14px;
    color: var(--text-light);
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__img-wrapper {
    position: relative;
}

.hero__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--accent-color);
    font-size: 20px;
}

.card-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

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

.hero__shapes .shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    right: 5%;
    filter: blur(100px);
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 20%;
    left: 10%;
    filter: blur(80px);
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 50%;
    left: 5%;
    filter: blur(60px);
}

/* ===== About Section ===== */
.about {
    background: var(--bg-light);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about__experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.experience__number {
    display: block;
    font-size: 48px;
    font-weight: 800;
}

.experience__text {
    font-size: 14px;
    font-weight: 600;
}

.about__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about__description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.about__detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about__detail i {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__detail strong {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.about__detail span {
    font-size: 15px;
    color: var(--text-dark);
}

.status-active {
    color: #22C55E !important;
    font-weight: 600;
}

/* ===== Services Section ===== */
.services {
    background: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service__card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.service__card:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service__icon i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service__description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.service__link:hover {
    gap: 15px;
}

/* ===== Features Section ===== */
.features {
    background: var(--bg-light);
}

.features__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features__description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.feature__icon i {
    font-size: 24px;
    color: white;
}

.feature__text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature__text p {
    font-size: 14px;
    color: var(--text-light);
}

.features__images {
    position: relative;
}

.features__img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature__img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature__img:hover {
    transform: scale(1.05);
}

.feature__img.img-3 {
    grid-column: span 2;
}

/* ===== Stats Section ===== */
.stats {
    background: var(--gradient-hero);
    padding: 80px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats__item {
    text-align: center;
    color: white;
}

.stats__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stats__icon i {
    font-size: 32px;
}

.stats__number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stats__label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: white;
}

.testimonials__slider {
    padding: 20px 0 60px;
}

.testimonial__card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin: 10px;
}

.testimonial__rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial__rating i {
    color: var(--accent-color);
    font-size: 18px;
}

.testimonial__text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial__author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial__author span {
    font-size: 13px;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--bg-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 107, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery__overlay i {
    font-size: 32px;
    color: white;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* ===== Contact Section ===== */
.contact {
    background: white;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact__card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact__text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact__text p,
.contact__text a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact__social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social__link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition-normal);
}

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

.contact__form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form__group {
    position: relative;
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition-normal);
}

.form__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form__group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

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

.form__group:has(.form__textarea) i {
    top: 25px;
    transform: none;
}

.form__select {
    cursor: pointer;
    appearance: none;
}

/* ===== Map Section ===== */
.map {
    width: 100%;
    background: var(--bg-light);
}

.map iframe {
    display: block;
}

/* ===== CTA Section ===== */
.cta {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.cta__content {
    text-align: center;
    color: white;
}

.cta__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta__description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social .social__link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.footer__social .social__link:hover {
    background: var(--gradient-primary);
}

.footer__links h4,
.footer__contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer__links h4::after,
.footer__contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer__links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer__links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact ul li i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__contact ul li a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    padding: 25px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ===== Float Contact Buttons ===== */
.float-contact {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.phone-btn {
    background: var(--gradient-primary);
}

.zalo-btn {
    background: #0068FF;
    font-size: 14px;
    font-weight: 700;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
}

/* ===== Responsive Design ===== */

/* Tablet Large */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero__title {
        font-size: 48px;
    }
    
    .section__title {
        font-size: 36px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media screen and (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        padding: 80px 40px;
        transition: var(--transition-normal);
        z-index: 1001;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .nav__link {
        font-size: 18px;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 28px;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__title {
        font-size: 42px;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about__image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .features__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features__images {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .section__title {
        font-size: 30px;
    }
    
    .section__header {
        margin-bottom: 40px;
    }
    
    .hero__title {
        font-size: 34px;
    }
    
    .hero__stats {
        gap: 25px;
    }
    
    .stat__number {
        font-size: 28px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats__number {
        font-size: 36px;
    }
    
    .cta__title {
        font-size: 30px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer__links h4::after,
    .footer__contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__contact ul li {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__experience {
        right: 0;
        bottom: -20px;
        padding: 20px;
    }
    
    .experience__number {
        font-size: 36px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item img {
        height: 200px;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .contact__form {
        padding: 25px;
    }
    
    .testimonial__card {
        padding: 25px;
    }
    
    .float-contact {
        right: 15px;
        bottom: 80px;
    }
    
    .scroll-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-top,
    .float-contact,
    .cta {
        display: none;
    }
    
    .section {
        padding: 40px 0;
    }
}
