/* Premium Hero Section Image Match Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Pacifico&display=swap');

:root {
    --hero-pink: #E91E63;
    --hero-pink-light: #FCE4EC;
    --hero-orange: #FF7A00;
    --hero-orange-light: #FFF3E0;
    --hero-purple: #7C4DFF;
    --hero-teal: #38B2AC;
    --hero-blue: #3B82F6;
    --hero-blue-light: #E3F2FD;
    --hero-dark: #1A202C;
    --hero-gray: #4A5568;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Base resets */
.hero-premium-img {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    overflow: visible;
    padding-top: 100px; /* offset for navbar */
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
}

/* Curved Pink Background (Right Side Blob) */
.hero-curved-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60vw;
    height: 100%;
    background: var(--hero-pink);
    border-bottom-left-radius: 60%;
    border-top-left-radius: 20%;
    z-index: 0;
    box-shadow: -20px 0 50px rgba(233, 30, 99, 0.2);
}

.hero-curved-bg::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 150%;
    height: 60%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-premium-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    z-index: 1;
    position: relative;
    align-items: center;
    flex: 1;
}

/* Left Column */
.hero-left-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--hero-orange-light);
    color: var(--hero-dark);
    border: 1px solid var(--hero-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--hero-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-pink { color: var(--hero-pink); }
.text-dark { color: var(--hero-dark); }
.underlined {
    position: relative;
    display: inline-block;
}
.underlined::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--hero-pink);
    z-index: -1;
    opacity: 0.8;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--hero-gray);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
}

/* Chips */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

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

.chip-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bg-pink-light { background: var(--hero-pink-light); }
.bg-orange-light { background: var(--hero-orange-light); }
.bg-blue-light { background: var(--hero-blue-light); }

.chip-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
.chip-text strong { font-size: 0.95rem; color: var(--hero-dark); font-weight: 700; }
.chip-text span { font-size: 0.8rem; color: var(--hero-gray); }

/* Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-actions .btn-primary {
    background: var(--hero-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.3);
}

.hero-actions .btn-secondary {
    background: #fff;
    color: var(--hero-dark);
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-actions .btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Right Side Image Layout */
.hero-right-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    height: 700px;
}

.main-image-wrapper {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 120%;
    height: 80%;
    border-radius: 500px 0 0 500px; /* Curve left side */
    overflow: hidden;
    z-index: 1;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.2);
}

.main-machine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-ipad {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 250px;
    background: #fff;
    border: 8px solid #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 3;
    transform: rotate(-5deg);
    overflow: hidden;
}

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

/* Top Right Float Card */
.float-top-right {
    position: absolute;
    top: 5%;
    right: 0;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}
.float-top-right .card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
}
.float-top-right .rating-text { font-size: 0.8rem; color: var(--hero-gray); margin-bottom: 12px; }
.avatars { display: flex; margin-bottom: 8px; }
.avatars img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.happy-clients { font-size: 0.75rem; font-weight: 600; color: var(--hero-dark); }

/* Stacked Pill Cards */
.pill-cards-container {
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 4;
}

.pill-card {
    background: #fff;
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pill-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}
.bg-pink { background: var(--hero-pink); }
.bg-orange { background: var(--hero-orange); }
.bg-purple { background: var(--hero-purple); }

.pill-text { display: flex; flex-direction: column; }
.pill-text strong { font-size: 0.95rem; color: var(--hero-dark); }
.pill-text span { font-size: 0.75rem; color: var(--hero-gray); }

/* Bottom Overlay Cards */
.hero-bottom-cards {
    position: relative;
    top: 80px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    z-index: 10;
    padding: 0 15px;
}

.service-card {
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    color: #fff;
    transition: transform 0.3s ease;
}

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

.card-pink { background: linear-gradient(135deg, #FF007F, #D81B60); }
.card-orange { background: linear-gradient(135deg, #FF9800, #F57C00); }
.card-purple { background: linear-gradient(135deg, #7E57C2, #5E35B1); }
.card-teal { background: linear-gradient(135deg, #26A69A, #00897B); }

.service-card .service-icon {
    font-size: 2.5rem;
}

.service-card .card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card .card-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 16px;
}

.service-card .view-more {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.service-card .view-more i {
    font-size: 1.1rem;
}

/* Header Adjustments for exact match */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-icon {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    color: var(--hero-pink);
}
.logo-icon::after {
    content: '+';
    font-size: 1.5rem;
    vertical-align: top;
}

#nav-menu ul li a {
    color: var(--hero-dark);
    font-weight: 600;
}
#nav-menu ul li a.active {
    color: var(--hero-dark);
    border-bottom: 3px solid var(--hero-orange);
    padding-bottom: 5px;
}

.nav-timing-desktop {
    background: var(--hero-pink-light);
    color: var(--hero-pink);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.header-actions .btn {
    background: var(--hero-orange);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 20px;
}

/* Ensure next section has top padding due to overlap */
.product-showcase-section {
    padding-top: 150px !important; 
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .hero-right-image { height: 600px; }
}

@media (max-width: 1024px) {
    .hero-bottom-cards { grid-template-columns: repeat(2, 1fr); }
    .product-showcase-section { padding-top: 200px !important; }
}

@media (max-width: 768px) {
    .hero-premium-img { padding-top: 120px; padding-bottom: 300px; }
    .hero-curved-bg { width: 100%; height: 50%; top: auto; bottom: 0; right: 0; border-radius: 0; border-top-left-radius: 50%; }
    .hero-left-content, .hero-right-image { flex: 0 0 100%; max-width: 100%; padding: 0; }
    .hero-right-image { height: 500px; margin-top: 50px; }
    .main-image-wrapper { width: 100%; left: 0; border-radius: 20px; }
    .floating-ipad, .float-top-right, .pill-cards-container { transform: scale(0.7); }
    .pill-cards-container { right: 0; }
}
