/* ===== RESET & VARIABLES ===== */
:root {
    --primary: rgb(201, 170, 55);
    --primary-light: rgb(221, 190, 75);
    --dark: #111111;
    --darker: #0a0a0a;
    --light: #ffffff;
    --gray: #cccccc;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    position: relative;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ===== HEADER ===== */
.header-modern {
    background: var(--darker);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 170, 55, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80px;
    gap: 20px;
    height: 80px; /* Sabit yükseklik */
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: visible;
    position: relative;
}

.logo {
    height: 150px; /* Büyük logo */
    width: auto;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* Tablet and up */
@media (min-width: 768px) {
    .nav-container {
        height: 100px;
    }
    
    .logo {
        height: 150px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .nav-container {
        height: 120px;
    }
    
    .logo {
        height: 150px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .nav-container {
        height: 70px;
    }
    
    .logo-container {
        padding: 5px 0;
    }
    
    .logo {
        height: 90px;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .nav-container {
        height: 60px;
    }
    
    .logo {
        height: 80px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: auto;
}

.nav-link {
    color: var(--light);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.phone-link i {
    color: var(--primary);
    font-size: 1.3rem;
}

.phone-link:hover {
    background: var(--primary);
    color: var(--dark);
}

.phone-link:hover i {
    color: var(--dark);
}

.construction-link {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px;
    border-radius: 16px;
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    gap: 15px;
    width: 85%;
    max-width: 340px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
}

.construction-link.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -52%);
}

.construction-logo-container {
    width: 140px;
    height: 140px;
    padding: 12px;
    margin: 0 auto;
    border-radius: 12px;
    background: #000;
    transition: transform 0.3s ease;
}

.construction-logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.construction-link span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    margin: 0;
    opacity: 1;
    transform: none;
    width: 100%;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.construction-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 300;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.construction-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, 0.95);
    padding: 8px 10px;
    border-radius: 8px 0 0 8px;
    z-index: 98;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.construction-toggle::before {
    content: "◄";
    color: var(--primary);
    font-size: 15px;
    transition: transform 0.3s ease;
}

.construction-toggle.active::before {
    transform: rotate(180deg);
}

.construction-toggle:hover {
    background: rgba(17, 17, 17, 0.98);
    border-color: rgba(var(--primary-rgb), 0.4);
}

/* Modal arka plan overlay */
.construction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.construction-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .construction-link {
        padding: 22px;
        width: 82%;
        max-width: 300px;
        gap: 12px;
    }

    .construction-logo-container {
        width: 130px;
        height: 130px;
        padding: 10px;
        overflow: visible;
    }

    .construction-logo {
        height: 150%;
        width: 150%;
        object-fit: contain;
        margin: -25%;
    }

    .construction-link span {
        font-size: 14px;
    }

    .construction-close {
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .construction-link {
        padding: 20px;
        width: 85%;
        max-width: 280px;
    }

    .construction-logo-container {
        width: 100px;
        height: 100px;
        padding: 10px;
        overflow: visible;
    }

    .construction-logo {

        height: 120%;
        width: 120%;
        object-fit: cover;
        
    }

    .construction-link span {
        font-size: 13px;
        margin-top: 5px;
    }

    .construction-close {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }
}

/* Desktop ve üstü */
@media screen and (min-width: 992px) {
    .nav-container {
        min-height: 100px;
    }

    .construction-link {
        flex: 1;
        justify-content: center;
    }
}

/* Tablet ve altı */
@media screen and (max-width: 991px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .construction-link {
        padding: 12px;
    }

    .construction-link img {
        width: 70px;
    }

    .construction-link span {
        font-size: 14px;
    }
}

/* Mobil */
@media screen and (max-width: 768px) {
    .construction-link {
        padding: 10px;
    }

    .construction-link img {
        width: 50px;
    }

    .construction-link span {
        font-size: 14px;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        z-index: 9999;
    }
}

/* Çok küçük ekranlar için */
@media screen and (max-width: 380px) {
    .construction-link {
        padding: 6px 10px;
        gap: 8px;
    }

    .construction-link img {
        width: 50px;
    }

    .construction-link span {
        font-size: 14px;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.9)), url('../images/25.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--light);
    margin: 25px 0 40px;
    line-height: 1.7;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--light);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    color: var(--light);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .stat-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 20px;
        padding: 15px 10px;
        background: rgba(0, 0, 0, 0.8);
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }

    .stat-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-description {
    color: var(--gray);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.section-divider {
    width: 100%;
    height: 40px;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.section-divider::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.section-divider::after {
    content: '❖';
    font-size: 14px;
    color: var(--primary);
    padding: 0 10px;
    z-index: 1;
}

.section-divider span {
    margin: 0 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    position: relative;
}

.section-divider span::before,
.section-divider span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.section-divider span::before {
    left: -12px;
}

.section-divider span::after {
    right: -12px;
}

@media (max-width: 768px) {
    .section-divider {
        height: 30px;
    }
    
    .section-divider::before {
        width: 80%;
    }
    
    .section-divider::after {
        font-size: 12px;
        padding: 0 8px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--darker);
    padding: 100px 0;
}

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

.service-card {
    background: var(--darker);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 170, 55, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--light);
    font-size: 1.5rem;
    padding: 25px 25px 15px;
    margin: 0;
}

.service-card p {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 1.6;
    padding: 0 25px;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.service-btn i {
    font-size: 20px;
    margin-left: 5px;
    transition: var(--transition);
    color: var(--dark);
}

.service-btn:hover {
    background: var(--primary-light);
}

.service-btn:hover i {
    transform: translateX(3px);
    color: var(--dark);
}

.service-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(201, 170, 55, 0.2);
}

@media (max-width: 991px) {
    .service-image {
        height: 220px;
    }

    .service-card h3 {
        font-size: 1.4rem;
        padding: 20px 20px 12px;
    }

    .service-card p {
        font-size: 1.1rem;
        padding: 0 20px;
        margin: 0 0 20px 0;
    }

    .service-btn {
        padding: 14px 24px;
        font-size: 1.2rem;
        margin: 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        padding: 0;
    }

    .service-card p {
        font-size: 1rem;
        margin: 0 0 15px 0;
        padding: 0;
    }

    .service-btn {
        width: 80%;
        margin: 15px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.95rem;
        margin: 0 0 12px 0;
    }

    .service-btn {
        width: 90%;
        margin: 10px auto;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: var(--dark);
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(17, 17, 17, 0.9));
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 1.15rem;
    color: var(--light);
    margin-top: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

.swiper-pagination-bullet {
    background: var(--gray) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--darker);
}

.about-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-section .section-header .section-description {
    color: var(--light);
}

.about-section .section-title {
    color: var(--light);
    margin-bottom: 15px;
}

.about-section .section-subtitle {
    color: var(--primary);
}

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

.about-content {
    padding-right: 30px;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--light);
    font-size: 1rem;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
    .section-header {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .section-subtitle,
    .section-title,
    .section-description {
        text-align: left;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        padding-right: 0;
        text-align: left;
    }

    .about-image {
        min-height: 300px;
        order: -1;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-content: start;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .services-grid {
        text-align: left;
    }

    .service-card {
        text-align: left;
    }

    .contact-info {
        text-align: left;
    }

    .contact-card {
        text-align: left;
    }

    .projects-section .section-header,
    .contact-section .section-header,
    .services-section .section-header {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-text {
        font-size: 1.15rem;
        margin: 15px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
        justify-content: start;
    }

    .feature-item {
        font-size: 0.9rem;
        justify-content: flex-start;
    }

    .about-image {
        min-height: 250px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .service-card {
        text-align: left;
    }

    .service-card h3,
    .service-card p {
        text-align: left;
    }

    .contact-card h3,
    .contact-card p,
    .contact-card a {
        text-align: left;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-card {
    background: var(--darker);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(201, 170, 55, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--light);
}

.contact-card p, 
.contact-card a {
    font-size: 1.15rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

/* Ofis adres kartındaki yol tarifi butonu için özel stil */
.contact-card .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 20px;
}

.contact-card .btn-primary i {
    font-size: 1.2rem;
    margin: 0;
    color: inherit;
}

.contact-form {
    background: var(--darker);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(201, 170, 55, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(201, 170, 55, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--light);
    background: var(--dark);
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.whatsapp-submit {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.whatsapp-submit:hover {
    background: var(--primary-light);
    color: var(--light);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
        text-align: left;
    }

    .contact-card i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 20px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        height: 100px;
    }

    .whatsapp-submit {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Map Section */
.map-section {
    position: relative;
    margin-top: 50px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--darker);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 350px;
    width: 90%;
    border: 1px solid rgba(201, 170, 55, 0.1);
}

.map-info-card h3 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.info-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.info-item p,
.info-item a {
    font-size: 1.15rem;
    color: var(--gray);
    text-decoration: none;
}

.info-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.info-btn {
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.info-btn:hover {
    transform: translateY(-2px);
}

.directions-btn {
    background: var(--primary);
}

.directions-btn:hover {
    background: var(--primary-dark);
}

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

.phone-btn:hover {
    background: var(--darker);
}

.whatsapp-btn {
    background: var(--primary) !important;
    color: var(--light) !important;
}

.whatsapp-btn:hover {
    background: var(--primary-light) !important;
    transform: translateY(-3px);
    color: var(--light) !important;
}

@media (max-width: 991px) {
    .map-info-card {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin: 20px auto;
    }

    .info-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }

    .map-info-card {
        padding: 20px;
        margin: 15px auto 40px;
    }

    .info-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .info-btn {
        padding: 12px;
        font-size: 1rem;
    }

    .map-section {
        margin-bottom: 30px;
    }

    .footer {
        margin-top: 20px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    padding: 80px 0 30px;
    color: var(--light);
    position: relative;
    background-image: url('../images/22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.868), rgba(10, 10, 10, 0.95));
    z-index: 1;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-info {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.footer-info p {
    color: var(--gray);
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-logo {
    max-width: 200px;
}

.footer-social {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 170, 55, 0.1);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer h3 {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.footer-links {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    position: relative;
    z-index: 2;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 170, 55, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 30px;
    }

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

    .footer-info {
        grid-column: 1 / -1;
        text-align: left;
        padding-right: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer h3 {
        font-size: 1.3rem;
    }

    .footer-links a,
    .footer-contact p,
    .footer-info p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        background-attachment: scroll;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: flex-start;
    }

    .footer h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-links a,
    .footer-contact p,
    .footer-info p,
    .footer-bottom p {
        font-size: 1rem;
    }

    .footer-logo {
        max-width: 180px;
        margin: 0 auto;
    }
}

/* ===== FLOATING ACTION BUTTONS ===== */

/* Floating Buttons Base Styles */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn i {
    font-size: 24px;
}

#scrollTopBtn:hover {
    background-color: #000;
}

@media (max-width: 768px) {
    #scrollTopBtn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        right: 10px;
        bottom: 80px;
    }
}

@media (max-width: 360px) {
    #scrollTopBtn {
        width: 35px;
        height: 35px;
        bottom: 10px;
        right: 10px;
    }
    
    #scrollTopBtn i {
        font-size: 16px;
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--primary);
    margin: 6px 0;
    transition: 0.4s ease;
    border-radius: 2px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .mobile-top-bar {
        display: block;
    }

    .nav-contact {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--darker);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 18px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:after {
        display: none;
    }

    .nav-container {
        padding: 5px 15px;
    }

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

    .mobile-menu-btn span {
        background-color: var(--primary);
    }

    .location span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding: 20px 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .service-image {
        height: 200px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin: 15px;
    }

    .service-card p {
        margin: 0 15px 15px;
    }

    .service-btn {
        margin: 0 15px 15px;
    }

    .mobile-menu-btn span {
        width: 20px;
        margin: 3px 0;
    }

    .map-info-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 40px);
        margin: 20px;
        transform: translateY(-50%);
    }
    
    .map-section {
        height: auto;
    }
    
    .map-container iframe {
        height: 350px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn i {
        font-size: 20px;
    }

    #scrollTopBtn {
        right: 15px;
        bottom: 15px;
    }

    #whatsappBtn {
        left: 15px;
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-card,
    .contact-card {
        padding: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        padding: 6px;
    }

    .mobile-menu-btn span {
        width: 18px;
        margin: 2.5px 0;
    }

    .top-bar {
        padding: 5px 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-phone span,
    .top-bar-whatsapp span {
        font-size: 0.8rem;
    }

    .logo {
        height: 150px;
    }

    .mobile-menu-btn span {
        width: 20px;
    }
}

/* Top Bar */
.top-bar {
    background: #2c2c2c;
    padding: 12px 0;
    color: var(--light);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-slogan {
    font-size: 0.95rem;
    color: var(--light);
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-email {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-bar-email i {
    color: var(--primary);
}

.top-bar-email:hover {
    color: var(--primary);
}

@media screen and (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-slogan {
        font-size: 0.9rem;
    }

    .top-bar-email {
        font-size: 0.9rem;
    }
}

#whatsappBtn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

#whatsappBtn:hover {
    transform: scale(1.1);
    background-color: #1da851;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
    #whatsappBtn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 25px;
        left: 25px;
    }
}

@media (max-width: 768px) {
    #whatsappBtn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 135px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    #whatsappBtn {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        bottom: 15px;
        left: 15px;
    }
}

.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 9999;
    border: none;
    cursor: pointer;
}

.floating-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: inherit;
    line-height: 1;
}

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

#whatsappBtn {
    left: 30px;
    bottom: 30px;
    background: #FFD700;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#whatsappBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #e5c200;
}

#scrollTopBtn {
    right: 30px;
    bottom: 30px;
    background: #FFD700;
    color: #000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#scrollTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #e5c200;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: var(--primary);
    color: var(--darker);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e5c349;
    transform: translateY(-3px);
    color: var(--darker);
}

@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        z-index: 9999;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
}

a {
    text-decoration: none;
}

.info-btn.whatsapp {
    background: var(--primary);
    color: var(--light);
}

.info-btn.whatsapp:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: var(--light);
}


