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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #333;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8941f, #e6d4a3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-elegant {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-initials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.logo-initials:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.logo-initials:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.logo-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-main::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e4bc);
    transition: width 0.3s ease;
}

.nav-logo:hover .logo-main::after {
    width: 100%;
}

.logo-accent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2px;
}

.accent-dot {
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.7;
}

.accent-text {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-style: italic;
    white-space: nowrap;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #f8f6f0 0%, #f4e4bc 100%);
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.hero-text {
    width: 100%;
    max-width: 600px;
    text-align: center;
    order: 2;
}

.hero-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-confidence {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.confidence-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    padding: 10px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.confidence-badge i {
    color: #2c2c2c;
    font-size: 0.9rem;
}

.availability-message {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c2c2c;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.availability-message i {
    color: #d4af37;
    font-size: 0.8rem;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item i {
    color: #d4af37;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

/* Removed pulse animation for more professional appearance */

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 2rem 0;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 24px 48px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 16px;
    text-transform: none;
    letter-spacing: 0.8px;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #2c2c2c;
    border: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #b8941f 0%, #e6d4a3 100%);
    border-color: #b8941f;
}

.btn-large:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-large:hover::before {
    left: 100%;
}

.hero-phone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d4af37;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-height: 48px;
    text-align: center;
    opacity: 0.9;
}

.phone-cta:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    opacity: 1;
}

.phone-cta i {
    font-size: 1.2rem;
}

.phone-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    order: 1;
}

.hero-photo {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
}

/* Desktop and Tablet Styles */
@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
        padding: 80px 20px 50px;
        text-align: left;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        width: 100%;
        max-width: 1200px;
    }

    .hero-text {
        grid-column: 1;
        text-align: left;
        order: 1;
    }

    .hero-image {
        grid-column: 2;
        order: 2;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-confidence {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.2rem;
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .confidence-badge {
        font-size: 1rem;
        padding: 12px 22px;
    }

    .availability-message {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .value-props {
        flex-direction: row;
        gap: 1rem;
    }

    .value-item {
        font-size: 0.9rem;
        padding: 8px 14px;
        white-space: nowrap;
    }

    .hero-cta {
        align-items: flex-start;
        max-width: 500px;
        margin: 3rem 0;
        padding: 3rem 2rem;
    }

    .btn-large {
        width: auto;
        min-width: 280px;
        font-size: 1.4rem;
        padding: 28px 56px;
    }

    .phone-cta {
        width: auto;
        min-width: 220px;
        font-size: 1.1rem;
    }

    .hero-photo {
        max-width: 500px;
        height: 500px;
    }
}

/* About Trish Section */
.about-trish {
    margin-top: 40px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f4e4bc 100%);
}

.about-trish-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trish-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trish-photo {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.trish-photo:hover {
    transform: scale(1.02);
}

.trish-bio h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.trish-bio h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: left;
    font-style: italic;
}

.trish-bio p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.trish-signature {
    margin-top: 2rem;
    text-align: right;
}

.signature-text {
    display: block;
    color: #999;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.signature-name {
    display: block;
    color: #d4af37;
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f6f0;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    margin-top: 10px;
    padding: 80px 0;
    background: #f8f6f0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.instagram-feed {
    text-align: center;
}

.instagram-header {
    margin-bottom: 3rem;
}

.instagram-header i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.instagram-header h3 {
    margin-bottom: 1rem;
}

.instagram-header p {
    color: #666;
    margin: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6d4a3, #d4af37);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.portfolio-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Long Island Services Section */
.long-island-services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-item h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.long-island-benefits {
    background: #f8f6f0;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.long-island-benefits h3 {
    color: #333;
    margin-bottom: 2rem;
}

.long-island-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.long-island-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
    text-align: left;
}

.long-island-benefits i {
    color: #d4af37;
    width: 20px;
    flex-shrink: 0;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8f6f0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.review-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: #f8f6f0;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.booking-option {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.booking-header i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.booking-header h3 {
    margin-bottom: 1rem;
}

.booking-header p {
    color: #666;
    margin: 0;
}

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

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

/* Form Status Messages */
.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Loading State */
.booking-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.booking-form.loading .btn-primary {
    background: #ccc;
    cursor: not-allowed;
}

/* Phone Booking */
.phone-booking {
    text-align: center;
}

.phone-number {
    margin-bottom: 2rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 3px solid #d4af37;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #d4af37;
    color: white;
    transform: scale(1.05);
}

.phone-link i {
    font-size: 1.5rem;
}

.phone-hours,
.phone-benefits {
    margin-bottom: 2rem;
    text-align: left;
}

.phone-hours h4,
.phone-benefits h4 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.phone-hours p {
    color: #666;
    margin-bottom: 0.5rem;
}

.phone-benefits ul {
    list-style: none;
    padding: 0;
}

.phone-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.phone-benefits i {
    color: #d4af37;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    border-radius: 15px;
    background: #f8f6f0;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p {
    color: #ccc;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .logo-elegant {
        gap: 0.75rem;
    }
    
    .logo-initials {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .accent-text {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile styles are now handled by the base mobile-first styles above */

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .booking-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-link {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    @media (min-width: 768px) {
        .portfolio-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .portfolio-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Ensure all text is centered on mobile */
    h1, h2, h3, h4, h5, h6 {
        text-align: center;
    }
    
    p {
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
    }

    /* Small mobile styles are handled by base mobile-first styles */

    .about-trish-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }

    .trish-bio h2,
    .trish-bio h3,
    .trish-bio p {
        text-align: center;
    }

    .trish-signature {
        text-align: center;
    }

    .trish-photo {
        max-width: 280px;
        height: 260px;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .portfolio,
    .long-island-services,
    .reviews,
    .booking,
    .contact {
        padding: 60px 15px;
        text-align: center;
    }
    
    .about {
        padding: 60px 15px;
        text-align: center;
    }
    
    .about-trish {
        margin-top: 40px;
        padding: 60px 15px;
        text-align: center;
    }
    
    /* Ensure all grid items are centered */
    .about-features,
    .services-grid,
    .reviews-grid,
    .contact-info,
    .footer-content {
        justify-items: center;
        text-align: center;
    }
    
    .feature,
    .service-item,
    .review-card,
    .contact-item {
        text-align: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .booking-option {
        padding: 1.5rem;
    }

    .phone-link {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f6f0 0%, #f4e4bc 100%);
    padding: 20px;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.success-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.success-content h1 {
    color: #333;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-details {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f6f0;
    border-radius: 15px;
}

.success-details h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.success-details i {
    color: #d4af37;
    width: 20px;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.success-social {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.success-social p {
    color: #666;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}
