/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-warm-white: #FFFFFF;
    --color-beige: #FFE4F0;
    --color-taupe: #FF8FAB;
    --color-matte-black: #0d1b2a;
    --color-charcoal: #0d1b2a;
    --color-soft-gray: #0d1b2a;
    --color-white: #FFFFFF;
    --color-gold: #FF8FAB;
}

body {
    font-family: 'Georgia', serif;
    background-color: #FFFFFF;
    color: #0d1b2a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #E8E8E8;
}

body.dark-mode .navbar {
    border-bottom: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: #0d1b2a;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.logo:hover {
    color: #FF8FAB;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #0d1b2a;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0d1b2a;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FF6B90;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.book-btn {
    padding: 0.75rem 1.5rem;
    background-color: #FF8FAB;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #FF8FAB;
    cursor: pointer;
}

.book-btn:hover,
.book-btn:active {
    background-color: #FF8FAB;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 143, 171, 0.3);
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #FF8FAB;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.theme-toggle:hover {
    transform: rotate(20deg);
    color: #FF6B90;
}

/* ==================== MAIN CONTENT ==================== */
main {
    margin-top: 80px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-title {
    font-size: 3.5rem;
    letter-spacing: 0.15em;
    color: #0d1b2a;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ==================== HOME PAGE ==================== */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 0.2em;
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    color: #0d1b2a;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #FF8FAB;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
    border: 2px solid #FF8FAB;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #fff;
    color: #FF6B90;
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    animation: fadeInUp 1.6s ease;
}

.social-icon {
    color: #0d1b2a;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #0d1b2a;
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-bio {
    margin-bottom: 4rem;
}

.about-bio p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #0d1b2a;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.section-title {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d1b2a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #FFE4F0;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #0d1b2a;
}

.stat-value {
    color: #0d1b2a;
}

.experience-list {
    list-style: none;
}

.experience-list li {
    padding: 0.75rem 0;
    line-height: 1.8;
    color: #0d1b2a;
}

.experience-list li::before {
    content: "•";
    color: #FF8FAB;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ==================== PORTFOLIO PAGE ==================== */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background-color: #FFFFFF;
    color: #FF8FAB;
    border: 2px solid #FF8FAB;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 0.25rem;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #FF8FAB;
    color: #FFFFFF;
    border-color: #FF8FAB;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #FFE4F0;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 1rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #FF8FAB;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    color: #FFFFFF;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

/* ==================== CONTACT PAGE ==================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 4px;
    color: #0d1b2a;
}

.contact-details h2 {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d1b2a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 2rem;
    color: #0d1b2a;
}

.contact-item strong {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #FF8FAB;
    font-weight: 600;
}

.contact-item p {
    color: #0d1b2a;
    margin-top: 0.5rem;
}

.contact-item p a {
    color: #0d1b2a;
    text-decoration: none;
    border-bottom: 1px solid #FF8FAB;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: #FF8FAB;
}

.contact-item a {
    color: #FF8FAB;
    text-decoration: none;
    border-bottom: 1px solid #FFE4F0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FF6B90;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-divider {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #FFE4F0;
}

.contact-item-divider strong {
    display: block;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
}

.contact-social-links a {
    color: #0d1b2a;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FFE4F0;
}

.contact-social-links a:hover {
    color: #FFFFFF;
    background-color: #FF8FAB;
    transform: scale(1.1);
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map::before {
    content: 'Loading map...';
    position: absolute;
    color: #999;
    font-size: 0.9rem;
    z-index: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 2;
    background: white;
}

.contact-form-section {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d1b2a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0d1b2a;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0d1b2a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.form-input {
    padding: 1rem;
    background-color: #FFFFFF;
    border: 1px solid #0d1b2a;
    color: #0d1b2a;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FF8FAB;
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.1);
    background-color: #FFFFFF;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    padding: 1rem;
    background-color: #FFFFFF;
    border: 1px solid #0d1b2a;
    color: #0d1b2a;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #FF8FAB;
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.1);
    background-color: #FFFFFF;
}

.form-error {
    color: #C85A54;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.active {
    display: block;
}

.btn-submit {
    width: auto;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

body.dark-mode .btn-submit:hover {
    transform: translateY(-2px) !important;
    color: #FF6B90 !important;
    background: #FFFFFF !important;
    border: 2px solid #FF6B90 !important;
}

.form-status {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #E8F5E9;
    color: #2E7D32;
}

.form-status.error {
    display: block;
    background-color: #FFEBEE;
    color: #C62828;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #FFFFFF;
    border-top: 1px solid #FFE4F0;
    padding: 2rem;
    text-align: center;
    color: #0d1b2a;
    font-size: 0.9rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
    }

    .logo {
        font-size: 0.85rem;
        flex: 0 0 auto;
        letter-spacing: 0.05em;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #FFE4F0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-top: 1px solid #FFE4F0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .nav-icons {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .book-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        height: 250px;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }

    .btn-submit {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 0.5rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #FF8FAB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;    
    transition: all 0.3s ease;
    
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 143, 171, 0.6);
}

.whatsapp-btn i {
    color: white;
    font-size: 1.8rem;
}

.whatsapp-popup {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    color: #0d1b2a;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    animation: popupFade 0.3s ease forwards;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-close {
    background: none;
    border: none;
    color: #0d1b2a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.whatsapp-close:hover {
    color: #FF8FAB;
}

.whatsapp-popup-text {
    flex: 1;
}

.whatsapp-popup.hidden {
    display: none;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i {
        font-size: 1.5rem;
    }
    
    .whatsapp-popup {
        font-size: 0.8rem;
    }
}

/* ==================== GALLERY VIDEO SUPPORT ==================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #f9f7f4;
    border-radius: 0.5rem;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .video-play-icon {
    opacity: 1;
}

.video-play-icon i {
    color: #FF8FAB;
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Lightbox Video Support */
.lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: auto;
    background-color: #000;
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid #FF8FAB;
    border-radius: 0.25rem;
    text-decoration: none;
    color: #0d1b2a;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.pagination a:hover {
    background-color: #FF8FAB;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.pagination span.current {
    background-color: #0d1b2a;
    color: #FFFFFF;
    border-color: #0d1b2a;
}

.pagination span.disabled {
    color: #ccc;
    cursor: not-allowed;
    border-color: #ddd;
}

.pagination-label {
    color: #FF8FAB;
    margin-bottom: 1rem;
}

.page-link {
    padding: 0.75rem 1rem;
    border: 1px solid #FF8FAB;
    border-radius: 0.25rem;
    text-decoration: none;
    color: #0d1b2a;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.page-link:hover {
    background-color: #FF8FAB;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-link.current {
    background-color: #0d1b2a;
    color: #FFFFFF;
    border-color: #0d1b2a;
}

.gallery-section-label {
    color: #0d1b2a;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #FF8FAB;
    padding-bottom: 0.5rem;
}

@media (max-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ==================== DARK MODE ==================== */
body.dark-mode {
    background-color: #0d1b2a;
    color: #FFFFFF;
}

body.dark-mode .navbar {
    background-color: #1a2635;
}

body.dark-mode .logo {
    color: #FFFFFF;
}

body.dark-mode .logo:hover {
    color: #FF8FAB;
}

body.dark-mode .nav-link {
    color: #FFFFFF;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: #FF8FAB;
}

body.dark-mode .nav-menu {
    background-color: #1a2635;
    border-bottom-color: #2a3f52;
}

body.dark-mode .nav-menu li {
    border-top-color: #2a3f52;
}

body.dark-mode .container {
    background-color: #0d1b2a;
}

body.dark-mode .page-title {
    color: #FF8FAB;
}

body.dark-mode .filter-btn {
    background-color: #1a2635;
    color: #FFFFFF;
    border-color: #FF8FAB;
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active {
    background-color: #FF8FAB;
    color: #0d1b2a;
    border-color: #FF8FAB;
}

body.dark-mode .gallery-grid {
    background-color: #0d1b2a;
}

body.dark-mode .gallery-item {
    background-color: #1a2635;
}

body.dark-mode .lightbox {
    background-color: rgba(13, 27, 42, 0.98);
}

body.dark-mode .lightbox-caption {
    color: #FFFFFF;
}

body.dark-mode .footer {
    background-color: #1a2635;
    color: #FFFFFF;
    border-top-color: #FF8FAB;
}

body.dark-mode .about-bio p {
    color: #FFFFFF;
}

body.dark-mode .section-title {
    color: #FF8FAB;
}

body.dark-mode h2,
body.dark-mode h3 {
    color: #FF8FAB;
}

body.dark-mode .about-grid {
    background-color: #1a2635;
    color: #FFFFFF;
}

body.dark-mode .form-input {
    background-color: #0d1b2a !important;
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

body.dark-mode .form-input:focus {
    background-color: #0d1b2a !important;
    color: #FFFFFF !important;
    border: 1px solid #FF8FAB !important;
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.1);
}

body.dark-mode .form-textarea {
    background-color: #0d1b2a !important;
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

body.dark-mode .form-textarea:focus {
    background-color: #0d1b2a !important;
    color: #FFFFFF !important;
    border: 1px solid #FF8FAB !important;
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.1);
}

body.dark-mode .gallery-section-label {
    color: #FF8FAB;
    border-bottom-color: #2a3f52;
    background-color: #0d1b2a;
}

body.dark-mode .gallery-separator {
    background: linear-gradient(to right, transparent, #FF8FAB, transparent);
    color: #FF8FAB;
}

body.dark-mode .contact-details {
    background-color: #1a2635;
    border: 1px solid #2a3f52;
    color: #FFFFFF;
}

body.dark-mode .contact-item {
    color: #FFFFFF;
}

body.dark-mode .contact-item p {
    color: #FFFFFF;
}

body.dark-mode .contact-item p a {
    color: #FF8FAB;
    border-bottom-color: #2a3f52;
}

body.dark-mode .contact-item-divider {
    border-top-color: #2a3f52;
}

body.dark-mode .contact-social-links a {
    background-color: rgba(255, 143, 171, 0.15);
    color: #FF8FAB;
    border-color: #FF8FAB;
}

body.dark-mode .contact-social-links a:hover {
    background-color: #FF8FAB;
    color: #FFFFFF;
}

body.dark-mode .contact-form-section {
    background-color: #1a2635;
    border: 1px solid #2a3f52;
}

body.dark-mode .contact-intro {
    color: #FFFFFF;
}

body.dark-mode .form-group label {
    color: #FF8FAB;
}

body.dark-mode textarea {
    background-color: #1a2635;
    color: #FFFFFF;
    border-color: #FF8FAB;
}

body.dark-mode textarea:focus {
    background-color: #1a2635;
    color: #FFFFFF;
    border-color: #FF8FAB;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 143, 171, 0.1);
}

body.dark-mode .form-control:focus {
    background-color: #1a2635;
    color: #FFFFFF;
    border-color: #FF8FAB;
}

body.dark-mode .btn-primary {
    background-color: #FF8FAB !important;
    color: #FFFFFF !important;
    border: 2px solid #FF8FAB !important;
}

body.dark-mode .btn-primary:hover,
body.dark-mode .btn-primary:active {
    background-color: #FFFFFF !important;
    color: #FF8FAB !important;
    border: 1px solid #FF8FAB !important;
}

body.dark-mode .pagination {
    background-color: transparent;
}

body.dark-mode .page-link {
    background-color: #1a2635;
    color: #FFFFFF;
    border-color: #2a3f52;
}

body.dark-mode .page-link:hover,
body.dark-mode .page-link.current {
    background-color: #FF8FAB;
    color: #0d1b2a;
    border-color: #FF8FAB;
}

body.dark-mode p {
    color: #FFFFFF;
}
body.dark-mode .social-icon {
    color: #FFFFFF;
}

body.dark-mode .social-icon:hover {
    color: #FF8FAB;
}

body.dark-mode .stat-label {
    color: #FFFFFF;
}

body.dark-mode .stat-value {
    color: #FFFFFF;
}

body.dark-mode .stat-item {
    border-bottom-color: #2a3f52;
    background-color: rgba(255, 143, 171, 0.05);
}

body.dark-mode .about-section {
    background-color: #1a2635;
    padding: 2rem;
    border-radius: 8px;
}

body.dark-mode .experience-list li {
    color: #FFFFFF;
}

body.dark-mode .hero {
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0.85) 100%), url('../images/bg001.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.dark-mode .hero::before {
    background-color: transparent;
}

body.dark-mode .hero-title {
    color: #FFFFFF;
}

body.dark-mode .hero-subtitle {
    color: #FFB3C6;
}