/* Luxurious Portfolio Design System - Converted from React */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxurious Color Palette */
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(215, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 15%);
    --primary: hsl(215, 28%, 17%);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(43, 74%, 66%);
    --secondary-foreground: hsl(215, 25%, 15%);
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(43, 74%, 66%);
    --accent-foreground: hsl(215, 25%, 15%);
    --luxury-gold: hsl(43, 74%, 66%);
    --luxury-gold-dark: hsl(43, 74%, 56%);
    --luxury-navy: hsl(215, 28%, 17%);
    --luxury-charcoal: hsl(215, 25%, 25%);
    --luxury-pearl: hsl(0, 0%, 98%);
    --luxury-silver: hsl(215, 14%, 89%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);
    --ring: hsl(43, 74%, 66%);
    --radius: 0.75rem;

    /* Gradients */
    --gradient-luxury: linear-gradient(135deg, var(--luxury-navy), var(--luxury-charcoal));
    --gradient-gold: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
    --gradient-hero: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);

    /* Shadows */
    --shadow-luxury: 0 25px 50px -12px hsla(215, 28%, 17%, 0.25);
    --shadow-card: 0 10px 30px -5px hsla(215, 28%, 17%, 0.1);
    --shadow-button: 0 4px 14px 0 hsla(43, 74%, 66%, 0.39);

    /* Typography */
    --font-cinzel: 'Cinzel', serif;
    --font-nunito: 'Nunito', sans-serif;
}

body {
    font-family: var(--font-nunito);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-cinzel);
    font-weight: 600;
    line-height: 1.2;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 1.5rem;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-hero {
    background: var(--gradient-hero);
}

/* Button Styles */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--luxury-navy);
    font-weight: 700;
    font-size: 1.375rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-nunito);
    gap: 0.5rem;
}

.btn-luxury:hover {
    box-shadow: var(--shadow-button);
    transform: scale(1.05);
}

.btn-luxury.large {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-luxury.small {
    padding: 0.875rem 1.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-outline-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    font-weight: 700;
    font-size: 1.375rem;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-nunito);
    gap: 0.5rem;
}

.btn-outline-luxury:hover {
    background: var(--luxury-gold);
    color: var(--luxury-navy);
    box-shadow: var(--shadow-button);
}

.btn-outline-luxury.large {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Card Styles */
.card-luxury {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--luxury-silver);
    transition: all 0.3s ease;
}

.card-luxury:hover {
    box-shadow: var(--shadow-luxury);
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-decoration-1,
.hero-decoration-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.hero-decoration-1 {
    top: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
}

.hero-decoration-2 {
    bottom: 10rem;
    left: 5rem;
    width: 12rem;
    height: 12rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(156, 39, 176, 0.1));
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: hsl(215, 16%, 47%);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    color: var(--luxury-gold);
    margin-top: 0.25rem;
}

.feature-text h4 {
    font-weight: 600;
    color: var(--luxury-navy);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

.about-profile {
    padding: 2rem;
    background: linear-gradient(135deg, white, hsl(220, 14%, 96%));
    text-align: center;
}

.profile-avatar {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-navy);
}

.profile-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--luxury-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, hsl(220, 14%, 96%), white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(215, 16%, 47%);
    max-width: 48rem;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    padding: 2rem;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--luxury-gold);
}

.package-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-badge.popular {
    background: var(--luxury-gold);
    color: var(--luxury-navy);
}

.package-badge.best-value {
    background: hsl(142, 76%, 36%);
    color: white;
}

.package-badge.enterprise {
    background: hsl(271, 91%, 65%);
    color: white;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.package-description {
    color: hsl(215, 16%, 47%);
    font-size: 0.875rem;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features .feature-item {
    margin-bottom: 1rem;
}

.package-features i {
    color: hsl(142, 76%, 36%);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.package-features span {
    color: hsl(215, 25%, 15%);
    font-size: 0.875rem;
}

.package-details {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.detail-row span:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--luxury-navy);
}

.detail-row span:last-child {
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

.package-addons {
    margin-bottom: 1.5rem;
}

.package-addons h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.package-addons ul {
    list-style: none;
}

.package-addons li {
    font-size: 0.75rem;
    color: hsl(215, 16%, 47%);
    margin-bottom: 0.25rem;
}

.package-btn {
    width: 100%;
    gap: 0.5rem;
}

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

.packages-footer p {
    color: hsl(215, 16%, 47%);
    margin-bottom: 1.5rem;
}

/* Portfolio Section */
.portfolio {
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.portfolio-item {
    overflow: hidden;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--luxury-navy);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-view-btn:hover {
    background: var(--luxury-gold);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--luxury-gold);
    background: hsla(43, 74%, 66%, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.portfolio-link {
    color: hsl(215, 16%, 47%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: var(--luxury-gold);
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: hsl(215, 16%, 47%);
    font-size: 0.875rem;
    line-height: 1.6;
}

.portfolio-footer {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-footer p {
    color: hsl(215, 16%, 47%);
    margin-bottom: 1.5rem;
}

/* Why Work Section */
.why-work {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.benefit-icon {
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.why-work-cta {
    text-align: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, hsl(220, 14%, 96%), white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-calendly,
.booking-form {
    padding: 2rem;
}

.booking-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.booking-icon i {
    color: var(--luxury-navy);
    width: 2rem;
    height: 2rem;
}

.booking-icon.dark {
    background: var(--gradient-luxury);
}

.booking-icon.dark i {
    color: white;
}

.booking-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: hsl(215, 16%, 47%);
}

.calendly-placeholder {
    background: hsl(220, 14%, 96%);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendly-placeholder i {
    width: 3rem;
    height: 3rem;
    color: hsl(215, 16%, 47%);
    margin: 0 auto 1rem;
}

.calendly-placeholder p {
    color: hsl(215, 16%, 47%);
    margin-bottom: 1rem;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(215, 16%, 47%);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit i {
    color: hsl(142, 76%, 36%);
    width: 1rem;
    height: 1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(220, 13%, 91%);
    border-radius: var(--radius);
    font-family: var(--font-nunito);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--luxury-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 3rem;
}

.form-submit {
    width: 100%;
    gap: 0.5rem;
}

/* Final CTA Section */
.final-cta {
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars i {
    color: var(--luxury-gold);
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.final-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.final-note strong {
    color: var(--luxury-gold);
}

/* Footer */
.footer {
    background: var(--luxury-navy);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--luxury-gold);
    width: 1rem;
    height: 1rem;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .cta-buttons,
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle,
    .final-cta-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-cta {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .final-cta-title {
        font-size: 4rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 7rem;
    }

    .final-cta-title {
        font-size: 6rem;
    }
}

/* Icon Sizing */
i[data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

/* Smooth Animations */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Loading Animation for Icons */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}