* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5e6b8 0%, #d4a017 50%, #b8860b 100%);
    background-attachment: fixed;
    padding: 15px;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 252, 240, 0.96);
    border-radius: 48px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}

.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a2a1a, #1a3a0a, #2d4a1a);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeOut 4.5s ease-in-out forwards;
}

.rolling-circle {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ffd700, #ff8c00, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rollGlow 2.5s ease-out forwards;
    box-shadow: 0 0 50px rgba(255,215,0,0.8);
    overflow: hidden;
}

.rolling-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff3cf;
    text-align: center;
    padding: 10px;
    white-space: nowrap;
    animation: rollText 2s ease-out forwards;
}

@keyframes rollGlow {
    0% { transform: translateX(-300px) rotate(0deg) scale(0.5); opacity: 0; }
    30% { transform: translateX(0px) rotate(360deg) scale(1.2); opacity: 1; }
    100% { transform: scale(1) rotate(720deg); }
}

@keyframes rollText {
    0% { transform: translateX(-100px) rotate(-180deg); opacity: 0; letter-spacing: 20px; }
    50% { transform: translateX(0) rotate(0deg); opacity: 1; letter-spacing: 2px; }
    100% { transform: rotate(0deg); letter-spacing: normal; }
}

.welcome-text {
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.2s forwards;
}

.welcome-text h1 { font-size: 2rem; color: gold; text-shadow: 0 0 15px #ffaa00; }
.welcome-text p { font-size: 1.1rem; color: #ffdd99; margin-top: 10px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { 0%, 70% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; display: none; } }

.leaf { position: fixed; pointer-events: none; z-index: 10000; font-size: 24px; animation: fallLeaf linear forwards; }
@keyframes fallLeaf { 0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; } 100% { transform: translateY(110vh) rotate(360deg); opacity: 0; } }

.hero { text-align: center; padding: 2rem 1rem 1.5rem; background: linear-gradient(180deg, rgba(255,245,200,0.8), rgba(255,235,170,0.4)); border-bottom: 3px solid #d4af37; }
.logo-wrapper { display: flex; justify-content: center; margin-bottom: 1rem; }
.logo-circle { width: 100px; height: 100px; background: radial-gradient(circle, #ffdf80, #c49a0c); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 25px rgba(0,0,0,0.25); border: 4px solid #fff3cf; overflow: hidden; }
.logo-img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 1.8rem; letter-spacing: 1px; color: #7a5c00; }
.brand-sub { font-size: 0.85rem; color: #8b6b1a; font-weight: 500; }

.website-btn { display: inline-block; background: linear-gradient(95deg, #2e7d32, #1b5e20); color: white; font-weight: bold; font-size: 1rem; padding: 10px 28px; border-radius: 60px; text-decoration: none; margin: 10px 0 5px; transition: 0.2s; }
.website-btn i { margin-right: 8px; }
.website-btn:hover { transform: scale(1.02); }

nav { display: flex; justify-content: center; gap: 1rem; margin: 1.2rem 0 0.8rem; flex-wrap: wrap; }
nav a { text-decoration: none; font-weight: bold; background: #2c2410; color: #ffdf9c; padding: 6px 20px; border-radius: 40px; cursor: pointer; transition: 0.2s; }
nav a:hover { background: #d4af37; color: #1e1a0c; }

.hire-btn { background: linear-gradient(95deg, #d4af37, #9b6e1f); border: none; color: white; font-weight: bold; font-size: 1rem; padding: 10px 28px; border-radius: 60px; cursor: pointer; margin: 8px 0; transition: 0.2s; }
.hire-btn i { margin-right: 8px; }
.hire-btn:hover { transform: scale(1.02); }

.section { padding: 1.5rem 1.2rem; border-bottom: 1px solid #ecdfaa; display: none; }
.active-section { display: block; }

.section-title { font-size: 1.6rem; font-weight: bold; border-left: 8px solid #d4af37; padding-left: 15px; margin-bottom: 1rem; color: #4a3a10; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }

.create-post-btn, .write-review-btn { background: linear-gradient(95deg, #d4af37, #9b6e1f); border: none; color: white; font-weight: bold; font-size: 0.9rem; padding: 8px 20px; border-radius: 40px; cursor: pointer; }
.create-post-btn i, .write-review-btn i { margin-right: 8px; }

.category-title { font-size: 1.2rem; font-weight: bold; margin: 1rem 0 0.8rem 0; padding-left: 12px; color: #7a5c00; border-left: 4px solid #d4af37; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; margin-bottom: 1rem; }
.portfolio-card { background: white; border-radius: 20px; padding: 0.6rem; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.08); cursor: pointer; transition: 0.2s; }
.portfolio-card:hover { transform: translateY(-5px); }
.card-preview { background: #fef0d2; height: 180px; border-radius: 16px; overflow: hidden; }
.card-preview img { width: 100%; height: 100%; object-fit: cover; }

.stats-banner { background: linear-gradient(135deg, #2c2410, #4a3a1a); display: flex; justify-content: center; align-items: center; padding: 1.5rem; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: bold; color: #d4af37; }
.stat-label { font-size: 0.8rem; color: #ffecb3; }
.stat-divider { width: 1px; height: 40px; background: #d4af37; opacity: 0.5; }

.specials-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.special-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: 0.2s; position: relative; }
.special-card:hover { transform: translateY(-5px); }
.special-badge { position: absolute; top: 15px; right: 15px; background: #e74c3c; color: white; padding: 5px 12px; border-radius: 30px; font-size: 0.7rem; font-weight: bold; }
.special-image { width: 100%; height: 180px; object-fit: cover; background: #fef0d2; }
.special-content { padding: 1.2rem; }
.special-title { font-size: 1.2rem; color: #7a5c00; margin-bottom: 0.5rem; }
.special-desc { color: #4a3a10; font-size: 0.85rem; margin-bottom: 0.8rem; line-height: 1.5; }
.special-offer { background: #e8f5e9; padding: 8px 12px; border-radius: 20px; font-size: 0.8rem; color: #2e7d32; font-weight: bold; margin-bottom: 0.8rem; }
.special-valid { font-size: 0.7rem; color: #a0771a; margin-bottom: 1rem; }
.special-actions { display: flex; gap: 1rem; padding-top: 0.8rem; border-top: 1px solid #ecdfaa; }
.special-like-btn { background: none; border: none; color: #7a5c00; cursor: pointer; display: flex; align-items: center; gap: 5px; }

.subscribe-box { background: linear-gradient(135deg, #fef5e0, #f5e6c8); border-radius: 24px; padding: 1.5rem; margin-bottom: 2rem; text-align: center; }
.subscribe-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.subscribe-form input { flex: 1; min-width: 200px; padding: 12px 16px; border-radius: 40px; border: 1px solid #d4af37; }
.subscribe-form button { background: linear-gradient(95deg, #2e7d32, #1b5e20); color: white; border: none; padding: 12px 24px; border-radius: 40px; cursor: pointer; }
.subscribe-message { margin-top: 10px; font-size: 0.85rem; color: #2e7d32; }

.rating-summary { background: #fffcf0; border-radius: 24px; padding: 1.5rem; margin-bottom: 2rem; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.overall-rating { text-align: center; }
.rating-number { font-size: 3rem; font-weight: bold; color: #d4af37; display: block; }
.rating-stars i { color: #ffc107; font-size: 1.2rem; }
.rating-count { font-size: 0.8rem; color: #a0771a; }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.8rem; }
.rating-bar-item .bar { flex: 1; height: 8px; background: #ecdfaa; border-radius: 4px; overflow: hidden; }
.rating-bar-item .fill { height: 100%; background: #d4af37; border-radius: 4px; }

.reviews-container { display: flex; flex-direction: column; gap: 1rem; max-height: 500px; overflow-y: auto; padding-right: 10px; }
.review-card { background: white; border-radius: 20px; padding: 1.2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; flex-wrap: wrap; }
.reviewer-name { font-weight: bold; color: #7a5c00; }
.review-stars i { color: #ffc107; font-size: 0.8rem; }
.review-date { font-size: 0.7rem; color: #a0771a; }
.review-text { color: #4a3a10; font-size: 0.85rem; line-height: 1.5; }

.rating-input { display: flex; gap: 10px; margin: 10px 0; }
.rating-star { cursor: pointer; font-size: 1.5rem; color: #ccc; }
.rating-star.active { color: #ffc107; }

.resume-card { background: #fffcf0; border-radius: 32px; padding: 2rem; }
.resume-header { text-align: center; margin-bottom: 1.5rem; border-bottom: 2px solid #d4af37; padding-bottom: 1rem; }
.resume-name-title h2 { font-size: 2rem; color: #7a5c00; }
.resume-name-title h3 { font-size: 1rem; color: #a0771a; }
.resume-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; background: #fef5e0; padding: 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.resume-contact span { font-size: 0.85rem; color: #5a4a1a; }
.resume-contact i { margin-right: 6px; color: #d4af37; }
.resume-section { margin-bottom: 1.5rem; }
.resume-section h4 { color: #7a5c00; border-left: 4px solid #d4af37; padding-left: 12px; margin-bottom: 0.8rem; }
.skills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag { background: #e9dbba; padding: 6px 14px; border-radius: 30px; font-size: 0.8rem; }
.services-offered { background: #fef5e0; border-radius: 20px; padding: 1rem; }
.service-cat { padding: 8px 0; border-bottom: 1px solid #ecdfaa; font-size: 0.85rem; }
.service-cat strong { color: #7a5c00; }

.about-text { background: #fffcf0; padding: 1.5rem; border-radius: 24px; line-height: 1.7; }

.lightbox { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); align-items: center; justify-content: center; flex-direction: column; }
.lightbox-image { max-width: 85%; max-height: 80%; object-fit: contain; border-radius: 12px; border: 3px solid #d4af37; }
.lightbox-caption { margin-top: 20px; color: #ffdf9c; background: rgba(0,0,0,0.7); padding: 8px 24px; border-radius: 40px; }
.lightbox-counter { margin-top: 10px; color: #d4af37; font-size: 0.85rem; }
.lightbox-close { position: absolute; top: 25px; right: 35px; color: #d4af37; font-size: 45px; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: #d4af37; border: none; font-size: 2rem; padding: 16px 20px; cursor: pointer; border-radius: 50%; }
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

/* Redesigned Hire Modal */
.client-select-modal {
    max-width: 900px !important;
    padding: 2rem !important;
}

.client-select-header {
    text-align: center;
    margin-bottom: 2rem;
}

.client-select-header i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.client-select-header h2 {
    color: #7a5c00;
    margin-bottom: 0.5rem;
}

.client-select-header p {
    color: #a0771a;
}

.client-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.client-option-card {
    background: linear-gradient(135deg, #fffcf0, #fef5e0);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    width: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ecdfaa;
    position: relative;
    overflow: hidden;
}

.client-option-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.client-option-card .card-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.client-option-card h3 {
    color: #7a5c00;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.client-option-card p {
    color: #a0771a;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.client-option-card .card-tag {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.client-option-card .select-btn {
    background: linear-gradient(95deg, #d4af37, #9b6e1f);
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.client-option-card .select-btn:hover {
    transform: scale(1.02);
}

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9000; overflow-y: auto; padding: 20px; }
.modal-content { background: #fffef5; max-width: 650px; margin: 20px auto; border-radius: 32px; padding: 1.5rem; }
.close-modal { float: right; font-size: 28px; cursor: pointer; color: #a0771a; }
input, textarea, select { width: 100%; padding: 10px; margin: 6px 0; border-radius: 28px; border: 1px solid #c2a13a; background: #fffcf0; }
.submit-buttons { display: flex; gap: 12px; margin: 20px 0; }
.submit-buttons button { background: #b47c00; color: white; border: none; padding: 12px; border-radius: 40px; cursor: pointer; flex: 1; }

.footer { background: #2c240e; color: #ffecb3; text-align: center; padding: 1.2rem; font-size: 0.75rem; }
.footer i { margin-right: 5px; }

@media (max-width: 600px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .specials-container { grid-template-columns: 1fr; }
    .section-title { flex-direction: column; gap: 10px; align-items: flex-start; }
    .lightbox-prev, .lightbox-next { font-size: 1.2rem; padding: 10px 14px; }
    .resume-contact { flex-direction: column; align-items: center; border-radius: 20px; }
    .client-options { gap: 1rem; }
    .client-option-card { width: 100%; max-width: 280px; }
}