/**
 * Vulcanizare Theme Styles
 * Fullscreen sections with smooth transitions
 * 
 * @package ServiciiAuto
 */

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background: #1a0a2e;
    overflow-x: hidden;
    overflow-y: hidden;
    line-height: 1.6;
    height: 100%;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 10, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo a {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-logo a:hover {
    color: #ff4500;
}

.navbar-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Submenu Styles */
.navbar-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 10, 46, 0.98);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #ff4500;
    z-index: 1000;
}

.navbar-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-menu .sub-menu li {
    display: block;
    width: 100%;
}

.navbar-menu .sub-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.navbar-menu .sub-menu a::after {
    display: none;
}

.navbar-menu .sub-menu a:hover {
    background: rgba(255, 69, 0, 0.1);
    padding-left: 2rem;
}

.navbar-menu a,
.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.navbar-menu a::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4500;
    transition: width 0.3s ease;
}

.navbar-menu a.active::after,
.nav-link.active::after,
.navbar-menu .current-menu-item > a::after,
.navbar-menu .current_page_item > a::after,
.navbar-menu .current-menu-ancestor > a::after,
.navbar-menu .current_page_ancestor > a::after {
    width: 100%;
}

.navbar-menu a.active,
.nav-link.active,
.navbar-menu .current-menu-item > a,
.navbar-menu .current_page_item > a,
.navbar-menu .current-menu-ancestor > a,
.navbar-menu .current_page_ancestor > a {
    color: #ffffff;
}

.navbar-menu a:hover,
.nav-link:hover {
    color: #ffffff;
}

.navbar-menu a:hover::after,
.nav-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

/* ========================================
   DOTS NAVIGATION
   ======================================== */
.dots-navigation {
    position: fixed;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dot-item {
    position: relative;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.dot-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dot-item:hover {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.dot-item:hover::before {
    width: 30px;
    height: 30px;
}

.dot-item.active {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #ff4500, #ff6347);
    border-color: #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6), 0 0 40px rgba(255, 69, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.6), 0 0 40px rgba(255, 69, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 69, 0, 0.8), 0 0 50px rgba(255, 69, 0, 0.5);
    }
}

.dot-tooltip {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.98), rgba(45, 22, 84, 0.98));
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent rgba(26, 10, 46, 0.98);
}

.dot-item:hover .dot-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.vulcanizare-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   SECTION BASE
   ======================================== */
.vulcanizare-section {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 3rem 2rem 2rem 2rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    transform: translateY(100vh);
    opacity: 0;
    z-index: 0;
}

.vulcanizare-section:first-child {
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

.vulcanizare-section.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    z-index: 2;
}

.vulcanizare-section.leaving-up {
    transform: translateY(-100vh) !important;
    opacity: 0 !important;
    z-index: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: #1a0a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 46, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-wrapper {
    flex: 1;
    text-align: center;
}

.hero-text-wrapper .phone-buttons {
    justify-content: center;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1.4;
}

.hero-description {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: #e0e0e0;
    line-height: 1.6;
}

.hero-image-wrapper {
    flex: 0 0 45%;
    max-width: 500px;
    max-height: 550px;
    margin-top: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-image {
    width: 100%;
    height: 100%;
    max-height: 550px;
    display: block;
    object-fit: cover;
}

.hero-services {
    margin-bottom: 1.2rem;
}

.service-item {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    margin: 0.5rem 0;
    color: #ffd700;
    font-weight: 500;
}

.hero-cta {
    margin-top: 1rem;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.phone-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.btn-phone {
    position: relative;
    display: inline-block;
    padding: 0.7rem 1.5rem 0.7rem 2.8rem;
    background: linear-gradient(135deg, #ff4500, #ff6347);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: auto;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-phone::before {
    content: '📞';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    10%, 30% { transform: translateY(-50%) rotate(-15deg); }
    20%, 40% { transform: translateY(-50%) rotate(15deg); }
}

.btn-phone:hover {
    background: linear-gradient(135deg, #ff6347, #ff4500);
    transform: translateY(-3px) scale(1.05);
}

.btn-phone-hero {
    margin-bottom: 1.5rem;
}

.btn-phone-hero::before {
    animation: none;
}

.btn-phone-hero:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-phone-secondary::before {
    animation: phoneRing 4s ease-in-out infinite;
}

.btn-phone-secondary:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-badge {
    margin-top: 0.8rem;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========================================
   SERVICII SECTION
   ======================================== */
.servicii-section {
    background: linear-gradient(135deg, #2d1654 0%, #1f0f3a 100%);
    padding: 2.5rem 2rem 1.5rem 2rem !important;
}

.servicii-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

/* Galerie Grid 2x2 */
.servicii-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0;
    max-height: 65vh;
    max-width: 90%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3), rgba(255, 99, 71, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.25), 0 0 20px rgba(255, 69, 0, 0.15);
    z-index: 10;
}

.gallery-item:hover img {
    transform: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0;
}

/* Text Servicii */
.servicii-text {
    padding: 1rem;
}

.servicii-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.servicii-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #ff4500, #ff6347);
    border-radius: 2px;
}

.servicii-list {
    list-style: none;
    margin: 1.2rem 0;
    padding: 0;
}

.servicii-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ff4500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.servicii-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.3);
}

.servicii-icon {
    font-size: 1.7rem;
    line-height: 1;
    flex-shrink: 0;
}

.servicii-desc {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #e0e0e0;
    line-height: 1.5;
    font-weight: 400;
}

.servicii-footer {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: #ffd700;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    margin-top: 1.2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ========================================
   DESPRE SECTION
   ======================================== */
.despre-section {
    background: linear-gradient(135deg, #1f0f3a 0%, #2d1654 100%);
    padding: 4.5rem 2rem 1.5rem 2rem !important;
}

.despre-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    height: 100%;
}

/* Text Stanga */
.despre-text {
    padding: 2rem;
}

.despre-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.despre-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border-left: 5px solid #ffd700;
    backdrop-filter: blur(10px);
}

.stats-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.stats-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #e0e0e0;
    font-weight: 500;
}

.despre-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ff4500, #ff6347);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
}

.despre-cta:hover {
    transform: translateX(10px);
}

.cta-arrow {
    font-size: 1.3rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.cta-link {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Imagine Dreapta */
.despre-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.despre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 99, 71, 0.1));
}

/* ========================================
   OTHER SECTIONS
   ======================================== */

.contact-section {
    background: #250f48;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, #250f48 0%, #1a0a2e 100%);
    padding: 4.5rem 2rem 1.5rem 2rem !important;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-title .highlight {
    color: #ff4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.contact-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff4500, #ff6347);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: center;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #ff6347, #ff4500);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.6);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    letter-spacing: 1px;
}

.contact-message {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-message {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #ff4500, #ff6347);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-message:hover {
    background: linear-gradient(135deg, #ff6347, #ff4500);
    transform: translateY(-3px);
}

.message-icon {
    font-size: 1.3rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a0a2e 0%, #0d0520 100%);
    padding: 2rem 2rem 1.5rem 2rem;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
    z-index: 5;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer.visible {
    transform: translateY(0);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-content {
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-phones {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-phone {
    position: relative;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    padding: 0.7rem 1.4rem 0.7rem 2.7rem;
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    border-radius: 50px;
    box-shadow: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-width: auto;
    text-align: center;
}

.footer-phone::before {
    content: '📞';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.05rem;
    animation: phoneRing 2s ease-in-out infinite;
}

.footer-phone:hover {
    background: linear-gradient(135deg, #ff6347 0%, #ff7f50 100%);
    transform: translateY(-3px) scale(1.05);
}

.footer-message {
    display: inline-block;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-message:hover {
    background: #ffd700;
    color: #1a0a2e;
    transform: scale(1.05);
}

.footer-credits {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits p {
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    color: #999;
    margin: 0;
}

.credits-link {
    color: #ff4500;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: #ff6347;
    text-decoration: underline;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff6347 0%, #ff7f50 100%);
    transform: translateY(-5px) scale(1.1);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.section-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: #ffffff;
}

.section-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #e0e0e0;
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 69, 0, 0.8);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 69, 0, 1);
    transform: rotate(90deg);
}
