@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Transforma Sans Medium';
    src: url('../Assets/Images/transforma-sans-medium.ttf') format('truetype'),
         url('Assets/Images/transforma-sans-medium.ttf') format('truetype'),
         url('./Assets/Images/transforma-sans-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: linear-gradient(180deg, #ece5cd 0%, #6b3a3a 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

h1, h2, h3 {
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #F5EFE7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #602523 0%, #6b3a3a 100%);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 4px solid #6b3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.cta-btn {
    background: #9b6e6e ;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    background: #6b3a3a;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #8b5a5a;
}

.mobile-menu-item:hover {
    background: #9b6a6a;
}

.mobile-menu-item.active {
    background: #7a4a4a;
    font-weight: 600;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.menu-icon svg {
    stroke: white;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.hero-left {
    background: repeating-linear-gradient(
        90deg,
        #6b3a3a 0px,
        #6b3a3a 20px,
        #9b6e6e 20px,
        #9b6e6e 40px
    );
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-frame {
    background: #daca9a;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero-image {
    width: 300px;
    height: 380px;
    background: #bd8c68;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    overflow: hidden;
}

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

.badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px #44515c;
    border: 4px solid #44515c;
}

.badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-right {
    background: #F5EFE7;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.decorative-icon {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 80px;
    height: 100px;
    border: 2px solid #44515c;
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #44515c;
}

.hero-title {
    font-size: 50px;
    color: #6b3a3a;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 25px;
    text-transform: uppercase;
    color: #7f8a63;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    color: #5A5A5A;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 20px;
}

.hero-btn {
    background: white;
    border: 4px solid #44515c;
    color: #44515c;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-weight: bold;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #44515c;
    color: white;
}

.bottom-btn {
    background: white;
    border: 4px solid #9b6e6e ;
    color: #9b6e6e ;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-weight: bold;
    transition: all 0.3s;
}

.bottom-btn:hover {
    background: #9b6e6e ;
    color: white;
}

.stamp {
    position: absolute;
    bottom: 40px;
    right: 80px;
    width: 60px;
    height: 60px;
    border: 3px solid #bd8c68;
    transform: rotate(15deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #bd8c68;
}

/* Info Banner */
.info-banner {
    background: #784e2f;
    padding: 20px;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.info-banner::before,
.info-banner::after {
    content: "PASSIONATE ABOUT CREATING BEAUTIFUL & FUNCTIONAL DIGITAL EXPERIENCES                    ";
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-right: 150px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
.about-section {
    background: #bd8c68;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.about-card {
    background: #F5EFE7;
    padding: 40px;
    border-radius: 15px;
}

.about-title {
    font-size: 32px;
    color: #6b3a3a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #9b5354;
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
}

.about-text {
    color: #5A5A5A;
    line-height: 1.8;
    font-size: 17px;
}

/* Brand Badge */
.brand-badge {
    position: absolute;
    top: 15px;
    left: 40px;
    background: #daca9a;
    border: 3px solid #7f8a63;
    border-radius: 50%;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6b3a3a;
    transform: rotate(-10deg);
    z-index: 10;
}

/* Carousel Section - Stacked Cards Like a Deck */
.carousel-section {
    padding: 4rem 50px;
    background: #F5EFE7;
    position: relative;
}

.carousel-title {
    font-family: 'Transforma Sans Medium', sans-serif;
    font-size: 42px;
    color: #6b3a3a;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: normal;
}

.carousel-stacked {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.carousel-stacked-track {
    position: relative;
    width: 550px;
    height: 650px;
}

.carousel-stacked-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(107, 44, 62, 0.15);
    text-decoration: none;
    display: block;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform, opacity, z-index;
}

.carousel-stacked-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Default stacking transitions */
.carousel-stacked-slide {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s ease,
                box-shadow 0.6s ease,
                z-index 0s 0.3s;
}

/* Position 0 - Top Card (fully visible, in front) */
.carousel-stacked-slide[data-position="0"] {
    transform: translate(0, 0) scale(1) rotate(0deg);
    z-index: 50;
    opacity: 1;
    box-shadow: 0 20px 60px rgba(107, 44, 62, 0.3);
    transition-delay: 0s;
}

/* Position 1 - Second card (slightly behind and offset) */
.carousel-stacked-slide[data-position="1"] {
    transform: translate(8px, 12px) scale(0.98) rotate(-0.5deg);
    z-index: 40;
    opacity: 0.95;
    box-shadow: 0 15px 45px rgba(107, 44, 62, 0.2);
}

/* Position 2 - Third card */
.carousel-stacked-slide[data-position="2"] {
    transform: translate(16px, 24px) scale(0.96) rotate(0.5deg);
    z-index: 30;
    opacity: 0.9;
    box-shadow: 0 10px 35px rgba(107, 44, 62, 0.15);
}

/* Position 3 - Fourth card */
.carousel-stacked-slide[data-position="3"] {
    transform: translate(24px, 36px) scale(0.94) rotate(-0.3deg);
    z-index: 20;
    opacity: 0.85;
}

/* Position 4 - Fifth card (barely visible) */
.carousel-stacked-slide[data-position="4"] {
    transform: translate(32px, 48px) scale(0.92) rotate(0.2deg);
    z-index: 10;
    opacity: 0.7;
}

/* Position 5+ - Hidden cards */
.carousel-stacked-slide[data-position="5"],
.carousel-stacked-slide[data-position="6"] {
    transform: translate(40px, 60px) scale(0.90) rotate(0deg);
    z-index: 5;
    opacity: 0;
}

/* Hover effect on top card */
.carousel-stacked-slide[data-position="0"]:hover {
    transform: translate(0, -8px) scale(1.01) rotate(0deg);
    box-shadow: 0 25px 70px rgba(107, 44, 62, 0.35);
}

/* Exit animation - card being swiped away */
.carousel-stacked-slide.exiting {
    transition: transform 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335),
                opacity 0.5s ease,
                z-index 0s;
    transform: translateX(120%) translateY(-30px) rotate(8deg) scale(0.9);
    opacity: 0;
    z-index: 100;
    pointer-events: none;
}

.carousel-stacked-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
                                rgba(107, 44, 62, 0.95) 0%, 
                                rgba(107, 44, 62, 0.8) 50%, 
                                transparent 100%);
    padding: 45px 35px 35px;
    color: white;
    transition: opacity 0.3s ease;
}

.carousel-stacked-slide[data-position="0"] .carousel-stacked-caption {
    opacity: 1;
}

.carousel-stacked-slide:not([data-position="0"]) .carousel-stacked-caption {
    opacity: 0;
}

.carousel-stacked-caption h3 {
    font-family: 'Transforma Sans Medium', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    line-height: 1.2;
}

.carousel-stacked-caption p {
    font-size: 16px;
    color: #daca9a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation Buttons */
.carousel-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 45px;
}

.carousel-btn {
    background: linear-gradient(135deg, #6b3a3a 0%, #9b5354 100%);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 44, 62, 0.25);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(107, 44, 62, 0.4);
    background: linear-gradient(135deg, #9b5354 0%, #6b3a3a 100%);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(107, 44, 62, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(107, 44, 62, 0.6);
    transform: scale(1.3);
}

.carousel-indicator.active {
    background: #6b3a3a;
    width: 32px;
    border-radius: 5px;
}

/* Support Section */
.support-section {
    background: #F5EFE7;
    padding: 60px 50px 80px;
}

.support-title {
    font-size: 42px;
    color: #6b3a3a;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.support-card {
    background: linear-gradient(135deg, #daca9a 0%, rgba(218, 202, 154, 0.5) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 4px solid #7f8a63;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: #f6ede2;
}

.support-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.support-card-title {
    font-size: 24px;
    color: #6b3a3a;
    margin-bottom: 15px;
    font-family: 'Transforma Sans Medium', sans-serif;
    font-weight: normal;
}

.support-card-text {
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.support-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #7f8a63;
}

.support-tag {
    display: flex;
    align-items: center;
    gap: 5px;
}

.support-tag::before {
    content: "✓";
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #44515c 0%, #333f49 100%);
    color: white;
    padding: 60px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: left;
}

.footer-title {
    font-family: 'Transforma Sans Medium', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: white;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
}

.footer-cta {
    display: flex;
    justify-content: center;
}

.footer-btn {
    background: white;
    border: 4px solid #44515c;
    color: #44515c;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    display: inline-block;
}

.footer-btn:hover {
    background: #44515c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 81, 92, 0.3);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: #6b3a3a;
    transform: translateY(-3px);
}

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

.footer-links {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS
   ======================================== */

/* Tablet Breakpoint */
@media (max-width: 968px) {
    /* Show hamburger menu on tablet and mobile */
    .hamburger {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav.desktop-nav {
        display: none !important;
    }

    /* Show mobile menu */
    .mobile-menu {
        display: flex;
    }

    /* Hero adjustments for tablet */
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 50px 30px;
    }

    .hero-right {
        padding: 50px 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    /* About section for tablet */
    .about-section {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }

    /* Support grid for tablet */
    .support-grid {
        grid-template-columns: 1fr;
    }

    /* Footer for tablet */
    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        font-size: 24px;
    }
}

/* Mobile Breakpoint - 768px */
@media (max-width: 768px) {
    body {
        background: #F5EFE7;
        padding: 0;
        min-height: 100vh;
    }

    .container {
        border-radius: 0;
        box-shadow: none;
    }

    /* Header */
    .header {
        border-radius: 0;
        padding: 15px 20px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .mobile-menu-item {
        padding: 18px 20px;
    }

    /* Hero Section - Stack Vertically */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image-frame {
        padding: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 280px;
        height: 350px;
        flex-shrink: 0;
    }

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

    .badge {
        width: 70px;
        height: 70px;
        bottom: -15px;
        right: -15px;
        border-width: 3px;
    }

    .hero-right {
        padding: 40px 20px;
    }

    .decorative-icon {
        display: none;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-btn,
    .bottom-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .stamp {
        display: none;
    }

    /* Info Banner */
    .info-banner {
        font-size: 13px;
        padding: 15px 10px;
    }

    /* About Section - Stack Vertically */
    .about-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 25px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .about-title {
        font-size: 26px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .brand-badge {
        width: 80px;
        height: 50px;
        font-size: 11px;
        left: 20px;
        top: 10px;
    }

    /* Carousel Section */
    .carousel-section {
        padding: 40px 20px;
    }

    .carousel-title {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .carousel-stacked {
        height: 500px;
        margin: 30px 0;
    }

    .carousel-stacked-track {
        width: 90%;
        max-width: 380px;
        height: 480px;
    }

    .carousel-stacked-caption {
        padding: 35px 25px 25px;
    }

    .carousel-stacked-caption h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .carousel-stacked-caption p {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .carousel-nav {
        margin-top: 30px;
        gap: 15px;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 8px;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .carousel-indicator.active {
        width: 24px;
    }

    /* Support Section */
    .support-section {
        padding: 40px 20px 60px;
    }

    .support-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

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

    .support-card {
        padding: 30px 20px;
        border-width: 3px;
    }

    .support-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .support-icon img {
        width: 50px;
        height: 50px;
    }

    .support-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .support-card-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .support-tags {
        gap: 12px;
        font-size: 11px;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 20px;
        border-radius: 0;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-btn {
        padding: 12px 28px;
        font-size: 14px;
        border-width: 3px;
    }

    .footer-links {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-separator {
        margin: 0 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Small Mobile Breakpoint - 480px */
@media (max-width: 480px) {
    /* Header */
    .header {
        padding: 12px 15px;
    }

    .logo-circle {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }

    .mobile-menu-item {
        padding: 16px 15px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero-left {
        padding: 30px 15px;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image-frame {
        padding: 12px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 240px;
        height: 300px;
        flex-shrink: 0;
    }

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

    .badge {
        width: 60px;
        height: 60px;
        bottom: -12px;
        right: -12px;
        border-width: 2px;
    }

    .hero-right {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-btn,
    .bottom-btn {
        padding: 10px 24px;
        font-size: 13px;
        border-width: 3px;
    }

    /* Info Banner */
    .info-banner {
        font-size: 11px;
        padding: 12px 8px;
    }

    /* About Section */
    .about-section {
        padding: 30px 15px;
        gap: 20px;
    }

    .about-card {
        padding: 25px 15px;
    }

    .about-title {
        font-size: 22px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .brand-badge {
        width: 70px;
        height: 45px;
        font-size: 10px;
        left: 15px;
        border-width: 2px;
    }

    /* Carousel Section */
    .carousel-section {
        padding: 30px 15px;
    }

    .carousel-title {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .carousel-stacked {
        height: 420px;
        margin: 25px 0;
    }

    .carousel-stacked-track {
        width: 95%;
        max-width: 320px;
        height: 400px;
    }

    .carousel-stacked-slide {
        border-radius: 18px;
    }

    .carousel-stacked-caption {
        padding: 30px 20px 20px;
    }

    .carousel-stacked-caption h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .carousel-stacked-caption p {
        font-size: 12px;
    }

    .carousel-nav {
        margin-top: 25px;
        gap: 12px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        margin-top: 1.2rem;
        gap: 6px;
    }

    .carousel-indicator {
        width: 7px;
        height: 7px;
    }

    .carousel-indicator.active {
        width: 20px;
    }

    /* Support Section */
    .support-section {
        padding: 30px 15px 50px;
    }

    .support-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .support-grid {
        gap: 15px;
    }

    .support-card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .support-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .support-icon img {
        width: 42px;
        height: 42px;
    }

    .support-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .support-card-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .support-tags {
        gap: 10px;
        font-size: 10px;
    }

    /* Footer */
    .footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-btn {
        padding: 11px 24px;
        font-size: 13px;
    }

    .footer-social {
        gap: 15px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .footer-links {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-separator {
        margin: 0 6px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-image {
        width: 220px;
        height: 280px;
    }

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

    .carousel-title {
        font-size: 24px;
    }

    .support-title {
        font-size: 24px;
    }

    .about-title {
        font-size: 20px;
    }

    .carousel-stacked-track {
        max-width: 280px;
        height: 360px;
    }

    .carousel-stacked {
        height: 380px;
    }
}