/* RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --secondary: #333333;
    --accent: #8b1d24; /* Referans sitedeki bordo vurgu */
    --accent-light: #a1222a; /* Hover için daha açık bordo */
    --light: #fcfcfc;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray: #e0e0e0;
    --gray-dark: #666666;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: var(--font-body);
    color: var(--secondary);
    background-color: var(--white);
    line-height: 1.7;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: 4rem; margin-bottom: 1.5rem; text-transform: uppercase; }
h2 { font-size: 2.8rem; margin-bottom: 2rem; position: relative; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* HEADER & NAVIGATION */
header {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    max-height: 150px; /* Increased from 80px (approx 2.25x) */
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Increased from 1.8rem (approx 2x) */
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-family: var(--font-accent);
    color: var(--accent);
    font-size: 1.8rem; /* Increased from 1rem */
    font-weight: 400;
    letter-spacing: 0;
    text-transform: lowercase;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.nav-menu li {
    display: flex;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    opacity: 0.7;
    padding: 10px 0;
}

.nav-menu a:hover, .nav-menu a.active {
    opacity: 1;
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px;
}

.header-cta .btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 0.75rem;
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
}

/* HERO & SLIDER SECTION */
.hero {
    padding: 0;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    height: 90vh;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
    color: var(--white); /* Sabit beyaz */
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--white); /* Sabit beyaz */
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}

.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: swiper-icons;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.swiper-button-prev::after {
    content: 'prev'; /* Swiper icon for < */
}

.swiper-button-next::after {
    content: 'next'; /* Swiper icon for > */
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

/* FEATURED PROJECTS */
.featured {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* PROJECT CARDS - Text Below Image */
.project-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: var(--transition);
}

.project-image {
    height: 250px;
    background-color: var(--gray);
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    color: var(--white);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-info p {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0;
}

/* PAGE HEADER */
.page-header {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray);
    position: relative;
    z-index: 1;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* GALLERY PAGE */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--gray);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-caption h3 {
    color: var(--white);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 1010;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.lightbox-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 20px 20px;
    width: 100%;
}

.lightbox-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
}

.lightbox-details p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.home-about {
    padding-top: 80px;
}

.home-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    color: var(--primary); /* Ensure visible color */
}

.home-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444; /* Darker text for readability */
    margin-bottom: 20px;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.home-about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-height: 60vh;
    }
    
    .lightbox-details h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-details p {
        font-size: 0.8rem;
    }
}

/* ABOUT PAGE */
.about-story {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1rem;
}

.story-image {
    height: 400px;
    background: var(--gray);
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

/* Stats */
.stats {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Team */
.team {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gray);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent);
    box-shadow: var(--shadow);
}

.member-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    padding: 60px 0;
    background: var(--light);
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline-year {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.timeline-item div:last-child {
    color: var(--secondary);
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.contact-form h2 {
    margin-bottom: 1rem;
}

.contact-form h2::after {
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    font-family: var(--font-body);
    transition: var(--transition);
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* reCAPTCHA simülasyonu */
.recaptcha-box {
    background: #f9f9f9;
    border: 1px solid var(--gray);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.recaptcha-box input {
    width: 20px;
    height: 20px;
}

.map-container {
    height: 300px;
    background: var(--gray);
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

/* Google Maps iframe */
.google-map {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    background: var(--light);
    padding: 30px;
    border-radius: 4px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 10px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 30px;
    margin-top: 3px;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

/* Business Hours */
.hours {
    margin-top: 30px;
}

.hours h3 {
    margin-bottom: 15px;
}

.hours table {
    width: 100%;
}

.hours td {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray);
}

.hours td:last-child {
    text-align: right;
    font-weight: 500;
}

.hours tr:last-child td {
    border-bottom: none;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* CTA SECTION */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: var(--light);
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section h2::after {
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ERROR PAGES */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 10rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-code span {
    display: inline-block;
    animation: pulse 2s infinite;
}

.error-code span:nth-child(2) {
    animation-delay: 0.1s;
}

.error-code span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.error-message {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--primary);
}

.error-description {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Column Illustration */
.column-illustration {
    margin: 40px 0;
    opacity: 0.2;
}

.column-illustration svg {
    width: 150px;
    height: auto;
}

/* Contact Info for Error Pages */
.contact-info.error-contact {
    margin-top: 40px;
    padding: 20px;
    background: var(--light);
    border-radius: 4px;
}

.contact-info.error-contact p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-info.error-contact i {
    color: var(--accent);
    margin: 0 5px;
}

/* FOOTER */
footer {
    padding: 100px 0 50px;
    background: #000000;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-content p {
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.5;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-links i {
    color: var(--accent);
    width: 25px;
    margin-right: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #888;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001; /* Menü butonu her zaman üstte */
        position: relative;
    }
    
    /* STATS SECTION */
.stats {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.6;
}

/* RESPONSIVE UPDATES */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }
    
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .nav-menu li {
        width: 100%;
        list-style: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 15px;
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        border-radius: 4px;
    }
    
    .nav-menu a:hover {
        background: var(--light);
        color: var(--accent);
    }
    
    .nav-menu a.active {
        color: var(--accent);
        background: rgba(139, 69, 19, 0.05);
    }
    
    /* Header içindeki diğer elementlerin z-index'i */
    .logo {
        position: relative;
        z-index: 1001;
    }
    
    /* Arka planın menüyü kapatmaması için */
    body::before {
        z-index: -1;
    }
    
    /* Diğer responsive stiller aynen devam */
    /* .hero padding removed to fix mobile layout gap */
    
    .project-grid,
    .gallery-grid,
    .team-grid,
    .home-about-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-image {
        height: 300px;
    }

    .home-about-grid {
        text-align: center;
    }
    
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-image {
        height: 300px;
    }
    
    .error-code {
        font-size: 7rem;
    }
    
    .error-message {
        font-size: 1.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-icons {
        justify-content: center;
    }
}
} /* Final closing brace for the outer @media (max-width: 768px) at line 1104 */

/* FLOATING CONTACT BUTTON */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.youtube {
    background: #FF0000;
}

.floating-btn.phone {
    background: var(--accent);
}

.floating-btn.instagram {
    background: #E1306C; /* Instagram color */
}

/* Tooltip */
.floating-btn {
    position: relative;
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}