/* ===========================
   CSS RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF5E8A;
    --primary-dark: #E54D78;
    --secondary: #F8F9FA;
    --accent: #FFD93D;
    --accent-secondary: #6C63FF;
    --teal: #00D9C0;
    --coral: #FF6B6B;
    --text-light: #FFFFFF;
    --text-dark: #2D3436;
    --bg-main: #FAFBFC;
    --neutral-light: #E8EAED;
    --neutral-med: #9CA3AF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-overline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* ===========================
   NAVIGATION
   =========================== */
.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--text-light);
    border-bottom: 3px solid var(--primary);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.logo-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-main);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 350px;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6))
            drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
    animation: fadeInUp 1s ease;
}

.hero-logo-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.95;
}

.hero-logo-blob.blob-1 {
    width: 180px;
    height: 180px;
    background: var(--primary);
    top: 20px;
    left: 30px;
    animation: heroLogoFloat1 5s ease-in-out infinite;
}

.hero-logo-blob.blob-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 30px;
    right: 20px;
    animation: heroLogoFloat2 6s ease-in-out infinite;
}

.hero-logo-blob.blob-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-secondary);
    bottom: 40px;
    left: 40px;
    animation: heroLogoFloat3 5.5s ease-in-out infinite;
}

.hero-logo-blob.blob-4 {
    width: 120px;
    height: 120px;
    background: var(--teal);
    top: 50px;
    right: 50px;
    animation: heroLogoFloat4 6.5s ease-in-out infinite;
}

@keyframes heroLogoFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 15px) scale(1.05); }
}

@keyframes heroLogoFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -15px) scale(1.08); }
}

@keyframes heroLogoFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -10px) scale(1.06); }
}

@keyframes heroLogoFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-12px, 18px) scale(1.07); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-title-word {
    display: block;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-title-word:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-word:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title-word:nth-child(3) {
    animation-delay: 0.6s;
}

.accent-word {
    color: var(--primary);
    font-style: italic;
}

.hero-tagline {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 20px 30px;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 94, 138, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 350px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

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

.color-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: blobMove 8s ease-in-out infinite;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--coral));
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.blob-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--teal));
    bottom: -10px;
    right: -10px;
    animation-delay: 2s;
}

.blob-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--coral));
    top: 50%;
    right: -30px;
    animation-delay: 4s;
}

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-socials {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-socials a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: var(--text-light);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.2);
}

.hero-socials a i {
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 94, 138, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 94, 138, 0.4);
    background: var(--primary-dark);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    background: var(--secondary);
}

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

.image-frame-modern {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-photo-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(255, 94, 138, 0.25);
    transition: transform 0.5s ease;
    overflow: hidden;
    padding: 0;
}

.about-photo-circle:hover {
    transform: scale(1.02);
}

.about-photo-cutout {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    position: relative;
    z-index: 3;
    transition: transform 0.5s ease;
    border-radius: 50%;
}

.about-photo-cutout:hover {
    transform: scale(1.02);
}

.about-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: aboutBlobMove 10s ease-in-out infinite;
}

.blob-pink {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: -30px;
    left: -40px;
    animation-delay: 0s;
}

.blob-purple {
    width: 180px;
    height: 180px;
    background: var(--accent-secondary);
    bottom: 50px;
    right: -30px;
    animation-delay: 3s;
}

.blob-teal {
    width: 150px;
    height: 150px;
    background: var(--teal);
    top: 40%;
    right: -50px;
    animation-delay: 6s;
}

@keyframes aboutBlobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-15px, 15px) scale(1.05); }
    66% { transform: translate(15px, -15px) scale(0.95); }
}

.image-frame {
    position: relative;
    border: 4px solid var(--primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.25);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: scale(1.02);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05) saturate(1.1);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-location {
    color: var(--primary);
    font-weight: 600;
    margin-top: 30px;
}

/* ===========================
   EXPERIENCE SECTION
   =========================== */
.experience {
    background: var(--bg-main);
}

.section-title-center {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title-center.dark {
    color: var(--text-dark);
}

.section-title-center.huge {
    font-size: 72px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
}

.section-subtitle.gold {
    color: var(--primary);
}

.experience-timeline {
    margin-top: 60px;
    display: grid;
    gap: 30px;
}

.experience-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.experience-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.25);
    border-left-color: var(--accent-secondary);
}

.experience-year {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.experience-role {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.experience-company {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 15px;
}

.experience-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.skills-section {
    margin-top: 80px;
    padding: 50px;
    background: var(--accent-secondary);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(108, 99, 255, 0.2);
}

.skills-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

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

.skill-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: var(--accent);
}

/* ===========================
   CONTENT GALLERY (REMOVED)
   =========================== */
/* ===========================
   VIDEO SECTION
   =========================== */
.videos {
    background: var(--bg-main);
    position: relative;
}

.videos::before {
    display: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.video-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 3px solid var(--primary);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 94, 138, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper .instagram-media {
    position: relative !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 540px !important;
}

.video-info {
    padding: 25px;
    background: var(--text-light);
}

.video-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.video-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    background: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
    border-top-color: var(--accent-secondary);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===========================
   WHY ME SECTION
   =========================== */
.why-me {
    background: var(--neutral-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    padding: 40px;
    background: var(--text-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    background: var(--text-light);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 94, 138, 0.15);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    display: block;
    margin-bottom: 15px;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.contact-card i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--text-light);
    font-size: 16px;
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

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

.form-message {
    padding: 20px;
    background: rgba(76, 175, 80, 0.2);
    border-left: 4px solid #4CAF50;
    border-radius: 6px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--text-dark);
    padding: 60px 0;
    border-top: 3px solid var(--primary);
}

.footer-content {
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-socials a {
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-subtext {
    color: var(--neutral-med);
    font-size: 13px;
    font-style: italic;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }
    
    .section-title-center {
        font-size: 52px;
    }
    
    .section-title-center.huge {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--text-light);
        border-left: 3px solid var(--primary);
        padding: 40px;
        width: 300px;
        height: calc(100vh - 70px);
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .hero-image {
        width: 280px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-logo-wrapper {
        width: 380px;
        height: 380px;
    }
    
    .hero-logo-img {
        width: 280px;
    }
    
    .hero-logo-blob.blob-1 {
        width: 150px;
        height: 150px;
    }
    
    .hero-logo-blob.blob-2 {
        width: 170px;
        height: 170px;
    }
    
    .hero-logo-blob.blob-3 {
        width: 130px;
        height: 130px;
    }
    
    .hero-logo-blob.blob-4 {
        width: 110px;
        height: 110px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-frame-modern {
        height: 450px;
        max-width: 400px;
    }
    
    .about-photo-circle {
        width: 380px;
        height: 380px;
        padding: 0;
    }
    
    .about-photo-cutout {
        width: 100%;
        height: 100%;
    }
    
    .blob-pink {
        width: 200px;
        height: 200px;
    }
    
    .blob-purple {
        width: 150px;
        height: 150px;
    }
    
    .blob-teal {
        width: 120px;
        height: 120px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-logo-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .hero-logo-img {
        width: 220px;
    }
    
    .hero-logo-blob.blob-1 {
        width: 130px;
        height: 130px;
    }
    
    .hero-logo-blob.blob-2 {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo-blob.blob-3 {
        width: 110px;
        height: 110px;
    }
    
    .hero-logo-blob.blob-4 {
        width: 95px;
        height: 95px;
    }
    
    .stat-card {
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .section-title-center {
        font-size: 40px;
    }
    
    .section-title-center.huge {
        font-size: 44px;
    }
    
    .services-grid,
    .why-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-logo-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .hero-logo-img {
        width: 180px;
    }
    
    .hero-logo-blob.blob-1 {
        width: 110px;
        height: 110px;
    }
    
    .hero-logo-blob.blob-2 {
        width: 120px;
        height: 120px;
    }
    
    .hero-logo-blob.blob-3 {
        width: 95px;
        height: 95px;
    }
    
    .hero-logo-blob.blob-4 {
        width: 80px;
        height: 80px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-card {
        padding: 12px 18px;
    }
    
    .image-frame-modern {
        height: 350px;
        max-width: 300px;
    }
    
    .about-photo-circle {
        width: 280px;
        height: 280px;
        padding: 0;
    }
    
    .about-photo-cutout {
        width: 100%;
        height: 100%;
    }
    
    .blob-pink {
        width: 150px;
        height: 150px;
    }
    
    .blob-purple {
        width: 120px;
        height: 120px;
    }
    
    .blob-teal {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-title-center {
        font-size: 32px;
    }
    
    .section-title-center.huge {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 13px;
    }
}
