/**
 * tractari Theme Styles
 * Fullscreen sections with smooth transitions
 * 
 * @package TractariAuto
 */

/* ========================================
   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: #003d5c;
    background: #fef8f3;
    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(254, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 61, 92, 0.1);
}

.navbar.scrolled {
    background: rgba(254, 248, 243, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.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: #003d5c;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-logo a:hover {
    color: #ffc107;
}

.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(254, 248, 243, 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.1);
    border-top: 2px solid #ffc107;
    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(0, 61, 92, 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, 193, 7, 0.1);
    padding-left: 2rem;
}

.navbar-menu a,
.nav-link {
    color: #8b7355;
    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: #ffc107;
    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: #003d5c;
}

.navbar-menu a:hover,
.nav-link:hover {
    color: #003d5c;
}

.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: #ffc107;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   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, 193, 7, 0.4);
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.dot-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dot-item:hover {
    border-color: rgba(255, 193, 7, 1);
    background: rgba(255, 193, 7, 0.2);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.dot-item:hover::before {
    width: 30px;
    height: 30px;
}

.dot-item.active {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    border-color: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6), 0 0 40px rgba(255, 193, 7, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6), 0 0 40px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 0 50px rgba(255, 193, 7, 0.5);
    }
}

.dot-tooltip {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg, rgba(254, 248, 243, 0.98), rgba(240, 232, 216, 0.98));
    color: #003d5c;
    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.15);
    border: 1px solid rgba(0, 61, 92, 0.2);
}

.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(254, 248, 243, 0.98);
}

.dot-item:hover .dot-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.tractari-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
   ======================================== */
.tractari-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;
}

.tractari-section:first-child {
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

.tractari-section.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    z-index: 2;
}

.tractari-section.leaving-up {
    transform: translateY(-100vh) !important;
    opacity: 0 !important;
    z-index: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    background: #1a1a1a;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/tractari-auto-sibiu-56-3-1536x810.jpeg') center/cover fixed no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    border: none;
    box-shadow: none;
}

.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: 3px 3px 12px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-services {
    margin-bottom: 1.2rem;
}

.service-item {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    margin: 0.5rem 0;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    margin-top: 1rem;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.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, #003d5c, #1a6a8a);
    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, #1a6a8a, #003d5c);
    transform: translateY(-3px) scale(1.05);
}

.btn-phone-hero {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.8rem 1.5rem 0.8rem 2.8rem;
}

.btn-phone-hero::before {
    animation: none;
}

.btn-phone-hero:hover {
    transform: translateY(-3px) scale(1.05);
}

.phone-label {
    font-size: clamp(0.7rem, 1.3vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.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: #ffc107;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========================================
   SERVICII SECTION
   ======================================== */
.servicii-section {
    background: linear-gradient(135deg, #f0e8d8 0%, #fef8f3 100%);
    padding: 1rem 1.5rem 0.8rem 1.5rem !important;
    margin-top: 4.6rem;
}

.servicii-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    height: 100%;
}

/* Galerie 2 Images Vertical */
.servicii-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0;
    max-height: 48vh;
    max-width: 80%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 160px;
    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);
    background: #000000;
}

.gallery-item:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-item:nth-child(2) img {
    width: 100%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 92, 0.2), rgba(255, 193, 7, 0.2));
    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, 193, 7, 0.2), 0 0 20px rgba(255, 193, 7, 0.1);
    z-index: 10;
}

.gallery-item:hover img {
    transform: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0;
}

/* Text Servicii */
.servicii-text {
    padding: 0.5rem;
}

.servicii-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #003d5c;
    margin-bottom: 0.8rem;
    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, #003d5c, #ffc107);
    border-radius: 2px;
}

.servicii-list {
    list-style: none;
    margin: 0.6rem 0;
    padding: 0;
}

.servicii-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0;
    padding: 1.3rem 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid rgba(0, 61, 92, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.servicii-item:last-child {
    border-bottom: none;
}

.servicii-item:hover {
    background: rgba(0, 61, 92, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.servicii-desc {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #8b7355;
    line-height: 1.3;
    font-weight: 400;
}

.servicii-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.cta-text {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: #003d5c;
    margin: 0;
    white-space: nowrap;
}

.servicii-footer {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: #ffc107;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    margin-top: 1.2rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* ========================================
   DESPRE SECTION
   ======================================== */
.despre-section {
    background: linear-gradient(135deg, #fef8f3 0%, #f0e8d8 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: #003d5c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.despre-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #8b7355;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.despre-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 20px;
    border-left: 5px solid #ffc107;
    backdrop-filter: blur(10px);
}

.despre-contact-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 0;
}

.contact-item {
    padding: 1.3rem 0;
    border-bottom: none;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #003d5c;
    flex-shrink: 0;
    line-height: 1;
    position: relative;
}

.contact-item .contact-item-icon::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 90px;
    background: #ffc107;
}

.contact-item:first-child .contact-item-icon::after {
    height: 120px;
}

.contact-item:nth-child(2) .contact-item-icon::after {
    height: 160px;
}

.contact-item:last-child .contact-item-icon::after {
    height: 70px;
}

.contact-item-content {
    flex: 1;
}

.contact-item.last-item {
    border-bottom: none;
}

.contact-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #8b7355;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.contact-item-title {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #003d5c;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.contact-item-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #8b7355;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.stats-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #ffc107;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.stats-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #8b7355;
    font-weight: 500;
}

.despre-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #003d5c, #1a6a8a);
    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(0, 61, 92, 0.1), rgba(255, 193, 7, 0.1));
}


.contact-section {
    background: #250f48;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: linear-gradient(rgba(0, 61, 92, 0.7), rgba(37, 15, 72, 0.8)), url('../images/tractari-sibiu-1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    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: #ffc107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.contact-title .phone-link {
    color: #ffc107;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-title .phone-link:hover {
    color: #ffffff;
    border-bottom: 2px solid #ffc107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.contact-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #f0f0f0;
    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, #003d5c, #1a6a8a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 61, 92, 0.2);
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: center;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #1a6a8a, #003d5c);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 61, 92, 0.4);
}

.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: #ffc107;
    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, #003d5c, #1a6a8a);
    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, #1a6a8a, #003d5c);
    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, #fef8f3 0%, #f0e8d8 100%);
    padding: 2rem 2rem 1.5rem 2rem;
    border-top: 2px solid rgba(0, 61, 92, 0.2);
    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: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    text-align: center;
    padding-left: 7rem;
    max-width: 500px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    margin-left: auto;
    padding-right: 4rem;
}

.footer-contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-text {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: #8b7355;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

.footer-phones {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    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, #003d5c 0%, #1a6a8a 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, #1a6a8a 0%, #2a8aaa 100%);
    transform: translateY(-3px) scale(1.05);
}

.footer-message {
    display: inline-block;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #ffc107;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-message:hover {
    background: #ffc107;
    color: #fef8f3;
    transform: scale(1.05);
}

.footer-credits {
    padding: 0;
    border: none;
    width: 100%;
    text-align: center;
}

.footer-credits p {
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    color: #b0a090;
    margin: 0;
}

.credits-link {
    color: #003d5c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003d5c 0%, #1a6a8a 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, #1a6a8a 0%, #2a8aaa 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: #003d5c;
}

.section-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #8b7355;
}

/* ========================================
   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, 193, 7, 0.2);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 61, 92, 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(0, 61, 92, 1);
    transform: rotate(90deg);
}
