* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background:  linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    background-attachment: fixed;
    padding: 15px;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient color(255, 252, 240, 0.98);
    border-radius: 32px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Welcome Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #d4af37);
    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, #d4af37, #b8860b, #8b6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rollGlow 2.5s ease-out forwards;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
}

.rolling-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff3cf;
    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: #d4af37;
    text-shadow: 0 0 15px #ffaa00;
}

.welcome-text p {
    font-size: 1.1rem;
    color: #ffdd99;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; display: none; }
}

/* Falling Leaves */
.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 Section */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #fffcf0, #fef8e8);
    border-bottom: 3px solid #d4af37;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #d4af37, #b8860b);
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    border: 4px solid #fff3cf;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 2.2rem;
    color: #7a5c00;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 5px;
}

.services-tagline {
    font-size: 1.1rem;
    color: #5a4a1a;
    font-weight: 500;
    margin-top: 10px;
}

.delivery-note {
    font-size: 0.9rem;
    color: #a0771a;
    margin: 5px 0;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.visit-website-hero-btn {
    background: linear-gradient(95deg, #d4af37, #9b6e1f);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-decoration: none;
}

.visit-website-hero-btn:hover {
    transform: scale(1.05);
}

.growth-partner {
    font-size: 1rem;
    color: #d4af37;
    font-weight: bold;
    margin-top: 15px;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    background: #2c2410;
    color: #ffdf9c;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.nav-btn:hover, .nav-btn.active-nav {
    background: #d4af37;
    color: #1e1a0c;
}

.admin-nav-btn {
    background: linear-gradient(95deg, #2c2410, #1a1510);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
}

.hire-me-btn {
    background: linear-gradient(95deg, #d4af37, #9b6e1f);
    border: none;
    color: white;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 60px;
    cursor: pointer;
    margin: 10px 0;
    font-size: 1rem;
    transition: 0.2s;
}

.hire-me-btn:hover {
    transform: scale(1.02);
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #2c2410, #4a3a1a);
    display: flex;
    justify-content: center;
    padding: 1.2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    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;
}

/* Pages */
.page {
    padding: 1.5rem;
    border-bottom: 1px solid #ecdfaa;
    display: none;
}

.active-page {
    display: block;
}

.section-title {
    font-size: 1.6rem;
    font-weight: bold;
    border-left: 8px solid #d4af37;
    padding-left: 15px;
    margin-bottom: 1rem;
    color: #4a3a10;
}

.category-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    padding-left: 12px;
    color: #7a5c00;
    border-left: 4px solid #d4af37;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    padding: 0.6rem;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-preview {
    background: #fef0d2;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
}

.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Home Page */
.home-content {
    background: linear-gradient(135deg, #fffcf0, #fef5e0);
    border-radius: 24px;
    padding: 2rem;
}

.home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.home-text h2 {
    color: #7a5c00;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.home-text p {
    color: #5a4a1a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 1rem 0;
}

.feature-list div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a3a10;
}

.feature-list i {
    color: #2e7d32;
}

.home-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-card i {
    font-size: 2rem;
    color: #d4af37;
}

.stat-card h3 {
    color: #7a5c00;
    font-size: 1.5rem;
    margin: 10px 0;
}

.stat-card p {
    color: #a0771a;
}

.mission-statement {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 24px;
    color: white;
}

.mission-statement i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.mission-statement h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Resume Page */
.resume-card {
    background: #fffcf0;
    border-radius: 24px;
    padding: 2rem;
}

.resume-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 1rem;
}

.resume-header h2 {
    color: #7a5c00;
    font-size: 1.8rem;
}

.resume-header h3 {
    color: #a0771a;
    font-size: 1rem;
    font-weight: normal;
}

.resume-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    background: #fef5e0;
    padding: 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.resume-contact-info div {
    font-size: 0.85rem;
    color: #5a4a1a;
}

.resume-contact-info i {
    margin-right: 6px;
    color: #d4af37;
}

.resume-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.resume-block {
    margin-bottom: 1.5rem;
}

.resume-block h4 {
    color: #7a5c00;
    border-left: 4px solid #d4af37;
    padding-left: 12px;
    margin-bottom: 0.8rem;
}

.skills-list, .services-offered {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skills-list span, .services-offered span {
    background: #e9dbba;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #7a5c00;
}

.exp-item {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #ecdfaa;
}

.exp-title {
    font-weight: bold;
    color: #7a5c00;
}

.exp-date {
    color: #d4af37;
    font-size: 0.75rem;
}

.exp-item p {
    font-size: 0.85rem;
    color: #5a4a1a;
    margin-top: 5px;
}

.download-cv {
    background: linear-gradient(95deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 1.5rem;
}

/* Reviews Page */
.reviews-stats-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fef5e0;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.avg-rating {
    text-align: center;
}

.avg-score {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    display: block;
}

.avg-stars {
    font-size: 1.2rem;
    color: #ffc107;
    letter-spacing: 2px;
}

.review-count {
    font-size: 0.8rem;
    color: #a0771a;
}

.write-review-btn {
    background: linear-gradient(95deg, #d4af37, #9b6e1f);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 0.5rem;
}

.review-card {
    background: #fef5e0;
    border-radius: 20px;
    padding: 1rem;
    border-left: 4px solid #d4af37;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.review-name {
    font-weight: bold;
    color: #7a5c00;
}

.review-rating {
    color: #ffc107;
    letter-spacing: 2px;
}

.review-text {
    color: #5a4a1a;
    font-size: 0.9rem;
    line-height: 1.4;
}

.review-date {
    font-size: 0.7rem;
    color: #a0771a;
    margin-top: 8px;
}

.load-more-reviews {
    text-align: center;
    margin-top: 1rem;
}

.load-more-reviews button {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-card {
    background: #fef5e0;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #ecdfaa;
}

.contact-card i {
    font-size: 2rem;
    color: #d4af37;
}

.contact-card h3 {
    color: #7a5c00;
    font-size: 1rem;
    margin: 10px 0;
}

.contact-card p {
    color: #5a4a1a;
    font-size: 0.85rem;
    margin: 5px 0;
    word-break: break-word;
}

.visit-website-btn {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: 5px;
}

.contact-form {
    background: #fef5e0;
    border-radius: 20px;
    padding: 1.5rem;
}

.contact-form h3 {
    color: #7a5c00;
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 30px;
    border: 1px solid #c2a13a;
    background: white;
}

.contact-form button {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.mission-footer {
    background: linear-gradient(135deg, #2c2410, #4a3a1a);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    color: #ffecb3;
}

/* Account Options */
.account-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.account-option {
    background: linear-gradient(135deg, #fffcf0, #fef5e0);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    width: 250px;
    cursor: pointer;
    border: 2px solid #ecdfaa;
    transition: 0.3s;
}

.account-option:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.account-option i {
    font-size: 3rem;
    color: #d4af37;
}

.account-option h3 {
    color: #7a5c00;
    margin: 10px 0;
}

.account-option p {
    color: #a0771a;
    font-size: 0.8rem;
}

/* Services Modal */
.large-modal .modal-content {
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
}

.service-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecdfaa;
}

.service-category h3 {
    color: #7a5c00;
    margin-bottom: 0.8rem;
}

.service-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.service-btn {
    background: #e9dbba;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-btn:hover {
    background: #d4af37;
    transform: scale(1.02);
}

.service-btn.selected {
    background: #2e7d32;
    color: white;
}

.qty-input {
    width: 80px;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #c2a13a;
    margin: 0 10px;
}

.add-to-cart-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

.price-display {
    font-size: 0.8rem;
    color: #2e7d32;
    margin-top: 5px;
}

.upload-area {
    border: 2px dashed #d4af37;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin: 10px 0;
    cursor: pointer;
}

.upload-area input {
    display: none;
}

/* Cart */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ecdfaa;
}

.remove-item, .remove-cart-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
}

.cart-total-line, .cart-deposit-line {
    text-align: right;
    margin: 10px 0;
    font-weight: bold;
}

.customer-info {
    margin: 15px 0;
}

.customer-info input, .customer-info textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 30px;
    border: 1px solid #c2a13a;
    background: white;
}

.submit-order-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    margin-top: 15px;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-option, .delivery-option {
    background: #fef5e0;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid #ecdfaa;
    transition: 0.2s;
}

.payment-option:hover, .delivery-option:hover {
    border-color: #d4af37;
    transform: scale(1.02);
}

.payment-option i, .delivery-option i {
    font-size: 2rem;
    color: #d4af37;
}

.delivery-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Invoice */
.invoice-content {
    max-width: 700px !important;
}

.invoice-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
}

.invoice-header h2 {
    color: #7a5c00;
    margin-bottom: 5px;
}

.invoice-items {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.invoice-items th,
.invoice-items td {
    padding: 10px;
    border-bottom: 1px solid #ecdfaa;
    text-align: left;
}

.invoice-items th {
    background: #fef5e0;
    color: #7a5c00;
    font-weight: bold;
}

.invoice-total {
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #d4af37;
}

.invoice-total h3 {
    color: #7a5c00;
    margin: 5px 0;
}

.invoice-message {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 20px;
    margin-top: 15px;
    text-align: center;
}

.invoice-message p {
    margin: 5px 0;
    color: #2e7d32;
}

.invoice-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.download-pdf-btn {
    background: linear-gradient(95deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    cursor: pointer;
    flex: 1;
    font-weight: bold;
    transition: 0.2s;
}

.download-pdf-btn:hover {
    transform: scale(1.02);
}

/* PDF Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    .invoice-print-area, .invoice-print-area * {
        visibility: visible;
    }
    .invoice-print-area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        background: white;
        font-family: 'Inter', sans-serif;
    }
    .invoice-buttons, .close-modal, .close-invoice-btn {
        display: none;
    }
}

/* Invoice List Admin */
.invoices-list {
    max-height: 400px;
    overflow-y: auto;
}

.invoice-item {
    background: white;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 4px solid #d4af37;
}

.invoice-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.invoice-number {
    font-weight: bold;
    color: #7a5c00;
    font-size: 0.85rem;
}

.invoice-date {
    font-size: 0.7rem;
    color: #a0771a;
}

.invoice-customer {
    font-size: 0.85rem;
    color: #4a3a10;
    margin-bottom: 5px;
}

.invoice-payment {
    font-size: 0.75rem;
    color: #2e7d32;
    margin-bottom: 5px;
}

.invoice-total {
    font-weight: bold;
    color: #d4af37;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.invoice-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.view-invoice-btn, .download-invoice-btn, .delete-invoice-btn {
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.7rem;
    border: none;
}

.view-invoice-btn {
    background: #d4af37;
    color: white;
}

.download-invoice-btn {
    background: #2e7d32;
    color: white;
}

.delete-invoice-btn {
    background: #e74c3c;
    color: white;
}

.export-btn {
    background: linear-gradient(95deg, #2980b9, #1a5276);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
}

.delete-reviews-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
}

/* Rating Stars */
.rating-select {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.rating-star {
    font-size: 2rem;
    cursor: pointer;
    color: #ccc;
}

.rating-star.active {
    color: #ffc107;
}

/* Admin Section */
.admin-section {
    background: #fef5e0;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.admin-section input, .admin-section textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border-radius: 20px;
    border: 1px solid #c2a13a;
}

.admin-section button {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 5px;
}

.admin-special-item, .subscriber-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 16px;
    margin-bottom: 8px;
}

/* Announcement Banner */
.announcement-banner {
    background: #e74c3c;
    color: white;
    padding: 12px 20px;
    margin: 0 1.5rem 1rem;
    border-radius: 60px;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightbox */
.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-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; }

/* Modals */
.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: 600px;
    margin: 40px auto;
    border-radius: 32px;
    padding: 1.5rem;
}

.large-modal .modal-content {
    max-width: 900px;
}

.close-modal {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #a0771a;
}

/* Footer */
.footer {
    background: #2c240e;
    color: #ffecb3;
    text-align: center;
    padding: 1rem;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .home-grid, .resume-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .account-options {
        flex-direction: column;
        align-items: center;
    }
    .payment-options {
        grid-template-columns: 1fr;
    }
    .brand-name {
        font-size: 1.5rem;
    }
    .reviews-stats-summary {
        flex-direction: column;
        text-align: center;
    }
    .large-modal .modal-content {
        max-width: 95%;
    }
}