/* Party With Ashley - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --primary-pink: #FF69B4;
    --text-dark: #111111;
    --text-gray: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F9F9F9;
    --border-light: #E5E5E5;
    --hover-pink: #FF85C1;
    --font-main: 'Inter', sans-serif;
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
}

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

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

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
    background: transparent;
    backdrop-filter: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-pink);
}

.cta-link {
    background: var(--primary-pink);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: var(--hover-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.social-links a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-pink);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle:hover span {
    background: var(--primary-pink);
}

/* Hamburger animation when menu is open */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-pink);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-pink);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 245, 0.9) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.15;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(255, 105, 180, 0.15);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
}

/* ===== Credibility Strip ===== */
.credibility {
    background: var(--bg-light);
    padding: 40px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.credibility-item i {
    font-size: 32px;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.credibility-item p {
    font-weight: 600;
    font-size: 14px;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 80px 0;
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-pink);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--bg-light);
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-gray);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary-pink);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-pink);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== Page Header ===== */
.page-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===== Gallery ===== */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid.best-of {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 15px;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== Services Detail ===== */
.services-detail {
    padding: 60px 0;
}

.service-block {
    background: var(--bg-white);
    padding: 50px 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-light);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.service-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-block p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* ===== Process Timeline ===== */
.process-timeline {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.timeline-item {
    text-align: center;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.timeline-item p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== Corporate Sections ===== */
.corporate-why {
    padding: 60px 0;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.corporate-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    text-align: center;
}

.corporate-card i {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.corporate-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.corporate-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Corporate Showcase */
.corporate-showcase {
    padding: 80px 0;
    background: var(--bg-white);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.showcase-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.showcase-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.showcase-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.showcase-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature-item i {
    color: var(--primary-pink);
    font-size: 20px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.event-types {
    background: var(--bg-light);
    padding: 80px 0;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.event-item i {
    font-size: 36px;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.event-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-item p {
    color: var(--text-gray);
    font-size: 15px;
}

.corporate-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
}

.step-num {
    width: 70px;
    height: 70px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== Typeform Section ===== */
.typeform-section {
    padding: 60px 0;
}

.typeform-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-light);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-pink);
    font-size: 20px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Contact Cards ===== */
.contact-cards {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-light);
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-pink);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--primary-pink);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.footer-social a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hover-pink);
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        padding: 20px 0;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list a {
        display: block;
        padding: 18px 25px;
        font-size: 16px;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: #fff5f8;
    }

    .social-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-brand {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 12px 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-details h3 {
        font-size: 24px;
    }

    .showcase-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .gallery-grid,
    .gallery-grid.best-of {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 50px;
    }
}

/* ================================
   Reviews Section
   ================================ */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

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

.reviews-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.2);
}

.review-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.review-stars i {
    margin-right: 3px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    border-top: 2px solid #f5f5f5;
    padding-top: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 16px;
}

.event-type {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.all-reviews-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.submit-review-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
}

.submit-review-container {
    max-width: 700px;
    margin: 0 auto;
}

.review-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

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

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
}

.star-rating i {
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.hover {
    color: #FFD700;
    transform: scale(1.2);
}

.star-rating i.fas {
    color: #FFD700;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.form-message {
    margin-top: 30px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.success-message {
    background: #f0fdf4;
    border: 2px solid #86efac;
    color: #166534;
}

.success-message i {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 15px;
}

.success-message h3 {
    margin: 15px 0 10px 0;
    color: #166534;
}

.error-message {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    color: #991b1b;
    padding: 20px;
    border-radius: 10px;
}

.error-message i {
    margin-right: 8px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto 0 auto;
}

/* ================================
   Instagram Feed Section
   ================================ */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
    background: linear-gradient(135deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}

.btn-instagram i {
    font-size: 22px;
    margin-right: 8px;
}

.instagram-subtitle {
    color: #666;
    font-size: 18px;
    margin: 15px 0 25px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FF69B4;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid #FF69B4;
    border-radius: 50px;
    background: white;
}

.instagram-handle:hover {
    background: #FF69B4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.instagram-handle i {
    font-size: 24px;
}

.instagram-feed-wrapper {
    margin: 40px 0;
    min-height: 400px;
}

/* Fallback Instagram Grid */
.instagram-grid {
    display: none; /* Hidden by default, shown if embed fails */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.instagram-grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.instagram-placeholder {
    text-align: center;
    color: white;
}

.instagram-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.instagram-placeholder p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-subtitle {
        font-size: 16px;
    }
    
    .instagram-handle {
        font-size: 18px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-handle {
        font-size: 16px;
        padding: 10px 20px;
    }
}