@font-face{
    font-family:'Lovender';
    src:'Lovender.ttf' format('truetype');
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#f3f3f3;
    overflow-x:hidden;
}

/* ==============================
   SCROLL REVEAL BASE
============================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

.reveal-left{
    opacity:0;
    transform:translateX(-50px);
    transition:opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible{
    opacity:1;
    transform:translateX(0);
}

.reveal-right{
    opacity:0;
    transform:translateX(50px);
    transition:opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible{
    opacity:1;
    transform:translateX(0);
}

/* ==============================
   NAVBAR
============================== */

.navbar{
    height:80px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
    transition:height 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled{
    height:64px;
    box-shadow:0 4px 20px rgba(255,95,144,.15);
}

.logo{
    display:flex;
    align-items:center;
    font-size:22px;
    font-weight:500;
    margin-left:10px;
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.logo img{
    width:90px;
    height:90px;
    object-fit:contain;
}

.logo:hover{
    color:#ff5f90;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:55px;
    margin-right:20px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:18px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    bottom:-4px;
    left:0;
    width:0;
    height:2px;
    background:#ff5f90;
    transition:width 0.3s ease;
}

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

.nav-links a.active{
    color:#ff5f90;
}

.nav-links a:hover{
    color:#ff5f90;
}

/* ==============================
   HERO SECTION — DESKTOP
============================== */

.hero{
    width:96%;
    height:88vh;
    margin:20px auto;
    border-radius:25px;
    background:linear-gradient(135deg, #d63670 0%, #e8527e 30%, #f47a9e 60%, #c2305e 100%);
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
}

/* Ambient floating orbs */
.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(255,143,175,0.25) 0%, transparent 70%);
    border-radius:50%;
    top:-100px;
    right:100px;
    animation:floatOrb 8s ease-in-out infinite;
    pointer-events:none;
}

.hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle, rgba(255,95,144,0.18) 0%, transparent 70%);
    border-radius:50%;
    bottom:50px;
    left:50px;
    animation:floatOrb 10s ease-in-out infinite reverse;
    pointer-events:none;
}

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

.hero-content{
    margin-left:190px;
    z-index:2;
}

.hello{
    display:block;
    font-family:'Annie Use Your Telescope', cursive;
    color:white;
    font-size:72px;
    opacity:0;
    transform:translateY(-20px);
    animation:fadeDown 0.8s ease 0.2s forwards;
}

.hero-content h1{
    font-family:'Lovender','Manrope',sans-serif;
    color:white;
    font-size:95px;
    font-weight:300;
    line-height:.95;
    margin:15px 0 25px;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 0.9s ease 0.5s forwards;
}

.hero-content p{
    font-family:"Times New Roman", serif;
    color:#ffffff;
    font-size:24px;
    width:650px;
    line-height:1.4;
    margin-bottom:55px;
    opacity:0;
    animation:fadeIn 1s ease 0.9s forwards;
}

.btn{
    display:inline-block;
    color:white;
    text-decoration:none;
    border:1px solid white;
    border-radius:14px;
    padding:18px 35px;
    font-size:22px;
    transition:.3s;
    opacity:0;
    animation:fadeIn 1s ease 1.2s forwards, pulseBorder 3s ease 2.2s infinite;
    position:relative;
}

.btn:hover{
    background:white;
    color:#ff5f90;
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(255,255,255,0.3);
}

@keyframes pulseBorder{
    0%,100%{ box-shadow:0 0 0 0 rgba(255,255,255,0.4); }
    50%{ box-shadow:0 0 0 10px rgba(255,255,255,0); }
}

.hero-image{
    position:absolute;
    right: 10px;
    bottom:0;
    height:100%;
    z-index:2;
}

.hero-image img{
    height:100%;
    width:auto;
}

/* Entry keyframes */
@keyframes fadeDown{
    to{ opacity:1; transform:translateY(0); }
}
@keyframes fadeUp{
    to{ opacity:1; transform:translateY(0); }
}
@keyframes fadeIn{
    to{ opacity:1; }
}

/* ==============================
   ABOUT SECTION
============================== */

.about{
    width:96%;
    min-height:88vh;
    margin:30px auto;
    border-radius:25px;
    background:linear-gradient(90deg, #FEE2E7 0%, #FFFFFF 100%);
    border:1px solid #ff8bab;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px;
}

.about-content{
    width:48%;
}

.about-tag{
    color:#ff5f90;
    font-size:22px;
    font-weight:800;
    display:block;
    margin-bottom:25px;
    letter-spacing:2px;
}

.about-content h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:12px;
}

.about-content h2 span{
    color:#ff5f90;
}

.underline{
    width:40px;
    height:4px;
    background:#222;
    margin-bottom:30px;
    transition:width 0.5s ease;
}

.about.visible-section .underline{
    width:80px;
}

.about-content p{
    font-size:23px;
    line-height:1.6;
    color:#333;
    margin-bottom:30px;
}

.about-content strong{
    color:#ff5f90;
}

/* IMAGE SIDE */
.about-image-wrapper{
    width:45%;
    height:650px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.circle-large{
    width:430px;
    height:430px;
    background:#f57793;
    border-radius:50%;
    position:absolute;
    animation:slowSpin 20s linear infinite;
}

.circle-small{
    width:90px;
    height:90px;
    background:#efb2bf;
    border-radius:50%;
    position:absolute;
    top:70px;
    right:90px;
    animation:floatBobble 4s ease-in-out infinite;
}

.circle-outline{
    width:180px;
    height:180px;
    border:1px solid #ff8bab;
    background:transparent;
    border-radius:50%;
    position:absolute;
    top:200px;
    right:20px;
    animation:floatBobble 5s ease-in-out infinite reverse;
}

.circle-outline-two{
    width:220px;
    height:220px;
    border:1px solid #ff8bab;
    border-radius:50%;
    position:absolute;
    left:40px;
    bottom:50px;
    animation:floatBobble 6s ease-in-out infinite;
}

.about-image-wrapper img{
    height:530px;
    top:-30px;
    position:relative;
    z-index:2;
}

@keyframes slowSpin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

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

/* ==============================
   SERVICES SECTION
============================== */

.services{
    width:96%;
    min-height:88vh;
    margin:20px auto;
    border-radius:25px;
    background:linear-gradient(135deg, #c2305e 0%, #d63670 35%, #e8527e 70%, #b82858 100%);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:60px 50px;
    overflow:hidden;
    position:relative;
}

/* Subtle shimmer overlay */
.services::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 100%);
    border-radius:25px;
    pointer-events:none;
}

.services-heading{
    font-family:"Times New Roman", serif;
    font-style:italic;
    color:white;
    font-size:58px;
    font-weight:400;
    margin-bottom:60px;
    letter-spacing:1px;
    text-shadow:0 2px 10px rgba(0,0,0,0.2);
    position:relative;
    z-index:1;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(6, minmax(0, 1fr));
    align-items:stretch;
    gap:clamp(10px, 1.6vw, 28px);
    width:100%;
    max-width:1500px;
    position:relative;
    z-index:1;
}

/* CARD */
.service-card{
    width:100%;
    min-width:0;
    min-height:300px;
    background:rgba(242,199,209,0.92);
    border-radius:20px;
    padding:clamp(16px, 2vw, 30px) clamp(10px, 1.4vw, 20px);
    text-align:center;
    border:2px solid transparent;
    transition:transform 0.4s ease, border 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter:blur(4px);

    /* staggered reveal via inline style delay */
    opacity:0;
    transform:translateY(30px);
}

.service-card.visible{
    opacity:1;
    transform:translateY(0);
}

.service-card:hover{
    transform:translateY(-14px) scale(1.02);
    border:2px solid rgba(255,255,255,0.95);
    box-shadow:0 0 12px rgba(255,255,255,0.8), 0 20px 40px rgba(0,0,0,0.15);
    background:rgba(255,230,238,0.97);
}

/* ICON */
.service-icon{
    width:clamp(52px, 6vw, 80px);
    height:clamp(52px, 6vw, 80px);
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto clamp(12px, 1.6vw, 22px);
    overflow:hidden;
    transition:transform 0.3s ease;
    box-shadow:0 4px 12px rgba(255,95,144,0.2);
}

.service-card:hover .service-icon{
    transform:rotate(8deg) scale(1.1);
}

.service-icon img{
    width:clamp(90px, 10vw, 150px);
    height:clamp(90px, 10vw, 150px);
    object-fit:contain;
}

/* TITLE */
.service-card h3{
    color:#ff5f90;
    font-size:clamp(14px, 1.4vw, 20px);
    font-weight:700;
    line-height:1.3;
    margin-bottom:clamp(8px, 1vw, 14px);
    min-height:52px;
}

/* TEXT */
.service-card p{
    color:#5a3040;
    font-size:clamp(12px, 1.05vw, 15px);
    line-height:1.6;
    min-height:80px;
}

.service-card:hover p{
    color:#333;
}

/* LINE */
.service-line{
    width:60px;
    height:2px;
    background:linear-gradient(90deg, #ff8bab, transparent);
    margin:16px auto 0;
    transition:width 0.3s ease;
}

.service-card:hover .service-line{
    width:100px;
}

/* ==============================
   SERVICES CAROUSEL (Mobile)
============================== */

.services-carousel-wrapper{
    display:none; /* shown only on mobile via media query */
    width:100%;
    position:relative;
    z-index:1;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.services-carousel-track{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    gap:16px;
    padding:8px 24px 16px;
    width:100%;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.services-carousel-track::-webkit-scrollbar{
    display:none;
}

/* Each card in carousel snaps to center */
.services-carousel-track .service-card{
    flex:0 0 80vw;
    max-width:300px;
    scroll-snap-align:center;
    width:auto;
    min-height:280px;
    opacity:1;      /* override reveal — handled by JS on desktop only */
    transform:none;
}

/* Dot indicators */
.carousel-dots{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:4px;
}

.carousel-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:rgba(255,255,255,0.4);
    border:none;
    cursor:pointer;
    padding:0;
    transition:background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active{
    background:white;
    transform:scale(1.3);
}

/* ==============================
   CONTACT SECTION
============================== */

.contact{
    width:96%;
    min-height:825px;
    margin:30px auto;
    border-radius:25px;
    background:linear-gradient(90deg, #FEE2E7 0%, #FFFFFF 100%);
    border:1px solid #ff8bab;
    padding:50px 60px 0;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.contact-heading{
    text-align:center;
    color:#ff5f90;
    font-family:"Times New Roman", serif;
    font-style:italic;
    font-size:64px;
    font-weight:400;
    margin-bottom:40px;
}

.contact-main{
    flex:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.contact-left{
    width:42%;
    margin-left:150px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:55px;
    transition:transform 0.3s ease;
}

.contact-item:hover{
    transform:translateX(6px);
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ff5f90;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    overflow:hidden;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon:hover,
.social-link:hover .contact-icon{
    transform:scale(1.12);
    box-shadow:0 6px 20px rgba(255,95,144,0.4);
}

.contact-icon img{
    width:200px;
    height:200px;
    object-fit:contain;
}

.contact-text p{
    font-size:22px;
    color:#222;
    margin:5px 0;
}

.contact-divider{
    width:1px;
    height:280px;
    background:linear-gradient(180deg, transparent, #f8a7b9, transparent);
}

.contact-right{
    width:42%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.consultation-btn{
    background:linear-gradient(135deg, #f67a99, #ff5f90);
    color:white;
    text-decoration:none;
    font-size:28px;
    padding:25px 50px;
    border-radius:18px;
    transition:.3s;
    box-shadow:0 8px 30px rgba(255,95,144,0.3);
    position:relative;
    overflow:hidden;
}

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

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

.consultation-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 40px rgba(255,95,144,0.45);
}

.social-link{
    text-decoration:none;
}

.instagram-link{
    text-decoration:none;
    color:#222;
    font-size:22px;
    font-weight:500;
    transition:color 0.3s ease;
}

.instagram-link:hover{
    color:#ff5f90;
}

/* FOOTER */
.portfolio-footer{
    margin-top:40px;
    background:linear-gradient(90deg, #f65384, #ff8bab);
    color:white;
    width:calc(100% + 120px);
    margin-left:-60px;
    border-radius:0 0 25px 25px;
    padding:24px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-sizing:border-box;
}

.footer-name{
    display:flex;
    align-items:center;
    font-size:20px;
    font-weight:500;
}

.footer-name img{
    width:80px;
    height:80px;
    object-fit:contain;
}

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

.footer-center p{
    margin:0;
}

.footer-center p:last-child{
    font-weight:700;
    margin-top:4px;
    font-size:13px;
    opacity:0.85;
}

/* ==============================
   LARGE DESKTOP 1400px+
============================== */
@media(min-width:1400px){
    .hero-content{ margin-left:220px; }
    .hero-content h1{ font-size:105px; }
    .hello{ font-size:80px; }
}

/* ==============================
   SMALL DESKTOP / LARGE TABLET 1024-1200px
============================== */
@media(max-width:1200px){
    .logo{ margin-left:20px; }
    .nav-links{ gap:32px; }

    .hero-content{ margin-left:80px; }
    .hero-content h1{ font-size:72px; }
    .hello{ font-size:56px; }
    .hero-content p{ font-size:20px; width:440px; }
    .hero-image{ right:20px; height:88%; }

    .about{ flex-direction:column; gap:50px; padding:60px 50px; }
    .about-content{ width:100%; }
    .about-content h2{ font-size:42px; }
    .about-content p{ font-size:19px; }
    .about-image-wrapper{ width:100%; height:460px; }
    .circle-large{ width:340px; height:340px; }
    .about-image-wrapper img{ height:400px; }
}

/* ==============================
   TABLET LANDSCAPE 769-1024px
============================== */
@media(max-width:1024px) and (min-width:769px){
    .navbar{ padding:0 30px; }
    .logo{ margin-left:0; font-size:19px; }
    .nav-links{ gap:28px; }
    .nav-links a{ font-size:16px; }

    .hero{ height:auto; min-height:80vh; padding:70px 30px 60px; }
    .hero-content{ margin-left:40px; }
    .hello{ font-size:48px; }
    .hero-content h1{ font-size:62px; }
    .hero-content p{ font-size:18px; width:380px; margin-bottom:36px; }
    .btn{ font-size:18px; padding:14px 28px; }
    .hero-image{ right:0; height:80%; }

    .about{ padding:50px 40px; }
    .about-tag{ font-size:18px; }
    .about-content h2{ font-size:38px; }
    .about-content p{ font-size:17px; }

    .services{ padding:50px 30px; }
    .services-heading{ font-size:42px; margin-bottom:44px; }

    .contact{ padding:40px 36px 0; }
    .contact-heading{ font-size:50px; }
    .contact-left{ margin-left:0; width:48%; }
    .contact-text p{ font-size:18px; }
    .consultation-btn{ font-size:22px; padding:20px 36px; }
    .portfolio-footer{
        width:calc(100% + 72px);
        margin-left:-36px;
        padding:20px 36px;
    }
}

/* ==============================
   SERVICES CARD SIZE DESKTOP
============================== */
@media(max-width:1400px){
    .services-container{ gap:clamp(8px, 1.2vw, 20px); }
}

/* ==============================
   MOBILE: 480-768px  (CAROUSEL ON)
============================== */
@media(max-width:768px){

    /* ── Navbar ── */
    .navbar{ padding:0 20px; height:64px; }
    .logo{ margin-left:0; font-size:16px; }
    .logo img{ width:60px; height:60px; }
    .hamburger{ display:flex; }

    .nav-links{
        position:fixed;
        top:0; right:-100%;
        width:75%;
        max-width:300px;
        height:100vh;
        background:white;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:36px;
        box-shadow:-4px 0 20px rgba(0,0,0,0.12);
        transition:right 0.35s ease;
        z-index:1000;
    }

    .nav-links.open{ right:0; }
    .nav-links a{ font-size:20px; }

    /* ── Hero: image as background, text on top ── */
    .hero{
        height:100svh;
        min-height:560px;
        width:97%;
        margin:10px auto;
        border-radius:18px;
        padding:0;
        align-items:flex-end;
        justify-content:flex-start;
    }

    /* Hide orb pseudo-elements for performance */
    .hero::before, .hero::after{ display:none; }

    /* hero-image becomes a full-cover bg image layer */
    .hero-image{
        display:block !important;
        position:absolute;
        inset:0;
        right:auto;
        bottom:auto;
        width:100%;
        height:100%;
        z-index:0;
    }

    .hero-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:top center;
        display:block;
    }

    /* Dark gradient overlay so text is always readable */
    .hero-image::after{
        content:'';
        position:absolute;
        inset:0;
        background:linear-gradient(
            to top,
            rgba(180,35,80,0.92) 0%,
            rgba(180,35,80,0.75) 40%,
            rgba(180,35,80,0.35) 70%,
            transparent 100%
        );
        border-radius:18px;
    }

    .hero-content{
        position:relative;
        z-index:3;
        margin:0;
        transform:none;
        padding:0 24px 48px;
        width:100%;
    }

    .hello{ font-size:36px; }
    .hero-content h1{ font-size:52px; line-height:1; margin:10px 0 18px; }
    .hero-content p{ font-size:17px; width:100%; margin-bottom:32px; }
    .btn{ font-size:17px; padding:14px 28px; border-radius:12px; }

    /* ── About ── */
    .about{
        width:97%;
        flex-direction:column;
        gap:0;
        padding:36px 24px 0;
        border-radius:18px;
        min-height:auto;
    }

    .about-content{
        width:100%;
        padding-bottom:32px;
    }

    .about-tag{ font-size:14px; margin-bottom:14px; }
    .about-content h2{ font-size:28px; }
    .about-content p{ font-size:16px; margin-bottom:20px; }

    /* About image: natural full-width photo at bottom of card */
    .about-image-wrapper{
        width:100%;
        height:auto;
        min-height:320px;
        position:relative;
        display:flex;
        justify-content:center;
        align-items:flex-end;
        overflow:hidden;
        margin:0 -24px;
        width:calc(100% + 48px);
        border-radius:0 0 18px 18px;
        background:linear-gradient(to bottom, #fee2e7, #f57793);
    }

    /* Scale down decorative circles */
    .circle-large{
        width:260px;
        height:260px;
        bottom:-30px;
        top:auto;
    }

    .circle-small{
        width:55px;
        height:55px;
        top:20px;
        right:30px;
    }

    .circle-outline{
        width:110px;
        height:110px;
        top:auto;
        bottom:60px;
        right:10px;
    }

    .circle-outline-two{
        width:130px;
        height:130px;
        left:10px;
        bottom:20px;
    }

    .about-image-wrapper img{
        height:340px;
        top:0;
        position:relative;
        z-index:2;
        object-fit:contain;
        object-position:bottom center;
    }

    /* ── Services: switch to carousel ── */
    .services{
        width:97%;
        border-radius:18px;
        min-height:auto;
        padding:48px 0 40px;
    }

    .services-heading{
        font-size:34px;
        margin-bottom:36px;
        padding:0 24px;
    }

    /* Hide the desktop grid, show carousel */
    .services-container{
        display:none;
    }

    .services-carousel-wrapper{
        display:flex;
    }

    /* ── Contact ── */
    .contact{
        width:97%;
        padding:36px 24px 0;
        border-radius:18px;
        min-height:auto;
        overflow:hidden;
    }

    .contact-heading{ font-size:38px; margin-bottom:28px; }
    .contact-main{ flex-direction:column; gap:32px; align-items:flex-start; }
    .contact-divider{ display:none; }
    .contact-left{ margin-left:0; width:100%; }
    .contact-right{ width:100%; justify-content:center; }
    .contact-item{ margin-bottom:32px; gap:18px; }
    .contact-icon{ width:52px; height:52px; }
    .contact-text p{ font-size:18px; }
    .instagram-link{ font-size:18px; }
    .consultation-btn{ font-size:20px; padding:18px 34px; }

    .portfolio-footer{
        width:calc(100% + 48px);
        margin-left:-24px;
        flex-direction:column;
        gap:8px;
        padding:20px 24px;
        text-align:center;
        border-radius:0 0 18px 18px;
    }

    .footer-name{ font-size:15px; }
    .footer-name img{ width:55px; height:55px; }
}

/* ==============================
   MOBILE PORTRAIT up to 480px
============================== */
@media(max-width:480px){

    .navbar{ padding:0 14px; height:58px; }
    .logo{ font-size:14px; }
    .logo img{ width:50px; height:50px; }

    .hero{ border-radius:14px; margin:8px auto; }
    .hero-content{ padding:0 18px 40px; }
    .hello{ font-size:30px; }
    .hero-content h1{ font-size:42px; }
    .hero-content p{ font-size:15px; margin-bottom:26px; }
    .btn{ font-size:15px; padding:12px 22px; border-radius:10px; }

    .about{ width:97%; border-radius:14px; padding:28px 18px 0; }
    .about-image-wrapper{
        margin:0 -18px;
        width:calc(100% + 36px);
        min-height:280px;
        border-radius:0 0 14px 14px;
    }
    .about-image-wrapper img{ height:280px; }
    .circle-large{ width:210px; height:210px; }

    .services{ border-radius:14px; padding:40px 0 34px; }
    .services-heading{ font-size:28px; margin-bottom:28px; }

    .services-carousel-track .service-card{
        flex:0 0 85vw;
        max-width:280px;
        min-height:260px;
        padding:24px 16px;
    }

    .service-card h3{ font-size:18px; min-height:auto; }
    .service-card p{ font-size:14px; min-height:auto; }
    .service-icon{ width:68px; height:68px; }
    .service-icon img{ width:120px; height:120px; }

    .contact{ width:97%; border-radius:14px; padding:28px 18px 0; }
    .contact-heading{ font-size:32px; margin-bottom:22px; }
    .contact-item{ margin-bottom:26px; gap:14px; }
    .contact-icon{ width:46px; height:46px; }
    .contact-text p{ font-size:16px; }
    .instagram-link{ font-size:16px; }
    .consultation-btn{ font-size:17px; padding:16px 28px; border-radius:14px; }

    .portfolio-footer{
        width:calc(100% + 36px);
        margin-left:-18px;
        padding:16px 18px;
        border-radius:0 0 14px 14px;
    }

    .footer-name{ font-size:13px; }
    .footer-center p{ font-size:12px; }
}

/* ==============================
   VERY SMALL PHONES up to 360px
============================== */
@media(max-width:360px){
    .logo{ font-size:12px; }
    .hello{ font-size:25px; }
    .hero-content h1{ font-size:34px; }
    .hero-content p{ font-size:13px; }
    .about-content h2{ font-size:22px; }
    .contact-heading{ font-size:26px; }
    .consultation-btn{ font-size:15px; padding:14px 22px; }
    .services-carousel-track .service-card{ flex:0 0 90vw; max-width:260px; }
}

/* ==============================
   HAMBURGER MENU
============================== */

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:28px;
    height:20px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    z-index:1001;
}

.hamburger span{
    display:block;
    width:100%;
    height:2px;
    background:#222;
    border-radius:2px;
    transition:transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.active span:nth-child(1){ transform:translateY(9px) rotate(45deg); background:#ff5f90; }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); background:#ff5f90; }

/* ==============================
   REDUCED MOTION
============================== */

@media(prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration:0.01ms !important;
        transition-duration:0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .service-card{
        opacity:1 !important;
        transform:none !important;
    }
}
