/* =============================================
   DEBBIE STYLES - CSS
   Color Theme: Light Pink with High Contrast
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --color-pink-50: #FFF5F7;
    --color-pink-100: #FFE8EE;
    --color-pink-200: #FFD1DE;
    --color-pink-300: #FFB0C6;
    --color-pink-400: #FF8FAD;
    --color-pink-500: #E8689A;
    --color-pink-600: #C94D7F;
    --color-pink-700: #A63665;
    --color-pink-800: #7D254B;
    --color-pink-900: #4A1630;

    --color-dark: #1A1A2E;
    --color-dark-muted: #2D2D44;
    --color-text: #1A1A2E;
    --color-text-light: #4A4A6A;
    --color-text-lighter: #6B6B8D;
    --color-white: #FFFFFF;
    --color-off-white: #FDFBFC;
    --color-border: #F0D4DE;
    --color-border-light: #F8E8EE;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.1);
    --shadow-xl: 0 12px 40px rgba(26, 26, 46, 0.12);
    --shadow-pink: 0 8px 30px rgba(232, 104, 154, 0.2);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --max-width: 1200px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-dark);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-pink-500), var(--color-pink-600));
    color: var(--color-white);
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-pink-600), var(--color-pink-700));
    box-shadow: var(--shadow-pink);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-pink-300);
}

.btn-secondary:hover {
    background: var(--color-pink-100);
    border-color: var(--color-pink-400);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: rgba(253, 251, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(253, 251, 252, 0.95);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-pink-500), var(--color-pink-700));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-pink-600);
    background: var(--color-pink-100);
}

/* ---------- Submenu ---------- */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 180px;
    z-index: 1000;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.has-submenu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.submenu li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
}

.submenu li a:hover,
.submenu li a.active {
    color: var(--color-pink-600);
    background: var(--color-pink-100);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.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(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-pink-50) 0%, var(--color-pink-100) 30%, var(--color-pink-200) 70%, var(--color-pink-300) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 104, 154, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 77, 127, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(166, 54, 101, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.hero-title strong {
    color: var(--color-pink-600);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-lighter);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-pink-400);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Sections ---------- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-pink-100);
    color: var(--color-pink-600);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.section-description {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

/* ---------- Intro Section ---------- */
.section-intro {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
}

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

.intro-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--color-off-white);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.intro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pink-300);
}

.intro-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-pink-100);
    color: var(--color-pink-600);
}

.intro-icon svg {
    width: 32px;
    height: 32px;
}

.intro-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.intro-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ---------- Section Backgrounds ---------- */
.section-health {
    background: var(--color-off-white);
}

.section-beauty {
    background: var(--color-white);
}

.section-sports {
    background: var(--color-off-white);
}

.section-testimonials {
    background: linear-gradient(135deg, var(--color-pink-50) 0%, var(--color-pink-100) 100%);
}

.section-about {
    background: var(--color-white);
}

.section-newsletter {
    background: linear-gradient(135deg, var(--color-pink-600), var(--color-pink-700));
    color: var(--color-white);
}

.section-contact {
    background: var(--color-off-white);
}

/* ---------- Card Grid ---------- */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-pink-300);
}

.card-large {
    grid-row: span 2;
}

.card-image {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-large .card-image {
    min-height: 280px;
}

.card-category {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-pink-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 16px;
}

.card-body {
    padding: 24px;
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-text {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

.card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-pink-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.card-link:hover {
    color: var(--color-pink-700);
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ---------- Card Link Wrapper ---------- */
.card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-link-wrapper:hover .card {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-pink-300);
}

.card-link-wrapper:hover .card-image img {
    transform: scale(1.05);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: #F5A623;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-pink-300), var(--color-pink-500));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: inline-block;
    min-width: 3ch;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-pink-600);
    line-height: 1;
    text-align: center;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-pink-600);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--color-text-lighter);
    margin-top: 4px;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 320px;
    height: 380px;
    background: linear-gradient(135deg, var(--color-pink-200), var(--color-pink-400));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-xl);
}

/* ---------- Newsletter ---------- */
.newsletter-content {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--color-white);
    margin-bottom: 12px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-primary {
    background: var(--color-white);
    color: var(--color-pink-600);
    border-color: var(--color-white);
}

.newsletter-form .btn-primary:hover {
    background: var(--color-pink-100);
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-pink-400);
    box-shadow: 0 0 0 3px rgba(232, 104, 154, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B8D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-pink-100);
    color: var(--color-pink-600);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-pink-500);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-pink-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-pink-500);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-pink);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

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

.back-to-top:hover {
    background: var(--color-pink-600);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ---------- Toast Notification ---------- */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .intro-grid {
        gap: 24px;
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image-placeholder {
        width: 260px;
        height: 320px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 8px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

    .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0 0 0 20px;
        min-width: auto;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    visibility 0.3s ease;
    }

    .has-submenu:hover > .submenu {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .has-submenu::after {
        display: none;
    }

    .submenu li a {
        padding: 8px 16px;
        font-size: 0.9rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.25s ease 0.05s,
                    transform 0.25s ease 0.05s,
                    color var(--transition),
                    background var(--transition);
    }

    .has-submenu.open > .submenu li a {
        opacity: 1;
        transform: translateX(0);
    }

    .has-submenu.open > .submenu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .has-submenu > .nav-link::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        margin-left: 6px;
        vertical-align: middle;
        transition: transform 0.3s ease;
        transform: rotate(45deg);
        margin-top: -2px;
    }

    .has-submenu.open > .nav-link::after {
        transform: rotate(-135deg);
        margin-top: 2px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .card-large {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .about-content .section-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image {
        order: -1;
    }

    .about-image-placeholder {
        width: 240px;
        height: 280px;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .contact-info {
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .contact-info {
        flex-direction: column;
    }

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

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