/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        #E91E63 0%,
        #F06292 25%,
        #FF6F61 50%,
        #FFB347 75%,
        #FFC864 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .brand-name {
    display: block;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.5rem;
}

.hero h1 .brand-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.hero h1 .descriptor {
    display: block;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero .cta-button {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* About Section */
#about {
    background: linear-gradient(to bottom, #FAF9F6 0%, white 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-left-column {
    position: sticky;
    top: 2rem;
}

.about-image {
    position: relative;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15);
}

.about-content {
    padding-top: 0;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #555;
}

.about-content p strong {
    color: var(--charcoal);
    font-weight: 600;
}

.about-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFF5F7, #FFF9E6);
    border-radius: 12px;
    border-left: 4px solid var(--rose-pink);
}

.about-highlight a {
    color: var(--rose-pink);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left-column {
        position: relative;
        top: 0;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #FAF9F6 0%, white 50%, #FFF9F0 100%);
    padding: 6rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233,30,99,0.15);
    border-color: var(--rose-pink);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-card li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: "✓";
    color: var(--rose-pink);
    font-weight: bold;
    margin-right: 0.75rem;
}

.service-clients {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.service-clients strong {
    color: var(--rose-pink);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-clients p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #777;
}

/* Award Spotlight */
.award-spotlight {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7d 50%, #1a3a52 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.award-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(circle, #FFC300 1px, transparent 1px);
    background-size: 50px 50px;
}

.award-spotlight-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.award-spotlight-header {
    text-align: center;
    margin-bottom: 3rem;
}

.award-spotlight-label {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFC300;
    font-weight: 600;
    margin-bottom: 1rem;
}

.award-spotlight-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.award-spotlight-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.award-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.award-spotlight-image-wrap {
    text-align: center;
}

.award-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.award-spotlight-content {
    color: white;
}

.award-spotlight-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.award-spotlight-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.award-spotlight-footer p:first-child {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.award-spotlight-footer p:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 1;
}

/* Reels Gallery */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reel-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.reel-item:nth-child(1) { animation-delay: 0.1s; }
.reel-item:nth-child(2) { animation-delay: 0.2s; }
.reel-item:nth-child(3) { animation-delay: 0.3s; }
.reel-item:nth-child(4) { animation-delay: 0.4s; }

.instagram-media {
    margin: 0 auto !important;
    min-width: 320px !important;
    max-width: 540px !important;
    width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Brand Logo Carousel */
.brand-carousel-section {
    background: white;
    padding: 4rem 0;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.brand-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.brand-carousel-header .section-label {
    color: var(--rose-pink);
}

.brand-carousel-header .section-title {
    color: var(--charcoal);
    font-size: clamp(2rem, 4vw, 3rem);
}

.carousel-track {
    display: flex;
    gap: 5rem;
    animation: scroll 50s linear infinite;
    width: max-content;
    align-items: center;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

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

/* What's New (latest posts) */
.whats-new-footer {
    text-align: center;
    margin-top: 3rem;
}

.whats-new-footer a {
    color: var(--rose-pink);
    font-weight: 600;
    text-decoration: none;
}

.whats-new-footer a:hover {
    text-decoration: underline;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.contact-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
}

.contact-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-button.primary {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
}

.contact-button.secondary {
    background: white;
    color: var(--charcoal);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .about-image img {
        height: 400px;
        box-shadow: 15px 15px 0 var(--rose-pink);
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

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