:root {
    --primary-color: #ff6b35;
    --gold-color: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --secondary-color: #f5f5dc;
    --dark-color: #2c2c2c;
    --light-color: #faf9f6;
    --text-color: #333;
    --white: #ffffff;
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Top Bar */
.header-top-bar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--gold-color);
}

.header-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-info span {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-info i {
    color: var(--gold-color);
    font-size: 0.9rem;
}

.header-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    color: var(--gold-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.whatsapp-link {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #25D366;
    font-size: 1.2rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    gap: 0.5rem;
}

.whatsapp-link span {
    color: #25D366;
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-link:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-link:hover span {
    color: white;
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold-color);
}

.navbar {
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    max-width: 100%;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding: 0;
    margin-left: 15px;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 230px;
    height: 100px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s;
    animation: iconFloat 3s ease-in-out infinite;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    animation: none;
}

.logo-icon i {
    font-size: 2.2rem;
    color: var(--dark-color);
    transition: all 0.3s;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.logo-sub {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.navbar-nav {
    align-items: center;
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 1rem;
    padding: 0.9rem 1.8rem !important;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
    color: var(--gold-color);
    transition: all 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-dark) !important;
    background: rgba(212, 175, 55, 0.1);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.2);
    color: var(--gold-dark);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.btn-contact-header {
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px solid var(--gold-dark);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-contact-header:hover::before {
    left: 100%;
}

.btn-contact-header i {
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s;
}

.btn-contact-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    color: var(--dark-color) !important;
}

.btn-contact-header:hover i {
    transform: rotate(360deg) scale(1.2);
}

.btn-quote-header {
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px solid var(--gold-dark);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

.btn-quote-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-quote-header:hover::before {
    left: 100%;
}

.btn-quote-header i {
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s;
}

.btn-quote-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    color: var(--dark-color) !important;
    animation: none;
}

.btn-quote-header:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* Hero Section with Carousel */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-section .carousel {
    height: 100%;
}

.hero-section .carousel-inner {
    height: 100%;
}

.hero-section .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-dark);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.hero-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-section .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0);
}

.hero-section .carousel-indicators {
    bottom: 30px;
    z-index: 2;
}

.hero-section .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    margin: 0 6px;
    transition: all 0.3s;
}

.hero-section .carousel-indicators button.active {
    background: var(--gold-color);
    border-color: var(--gold-dark);
    width: 35px;
    border-radius: 7px;
    box-shadow: var(--shadow-gold);
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--gold-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

.hero-rating {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.stars {
    color: var(--gold-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-rating p {
    font-size: 1rem;
    opacity: 0.95;
    color: var(--gold-light);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.9;
}

.instagram-embed {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-color);
    position: relative;
    overflow: hidden;
}

.instagram-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 2;
}

.instagram-card-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.instagram-card-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}


.instagram-card-link:hover .instagram-card-image {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Innovative Section */
.innovative-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.innovative-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-text {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.9;
}

.btn-contact {
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold-dark);
    letter-spacing: 1px;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

.innovative-image {
    margin-top: 4rem;
    position: relative;
    height: 650px;
    min-height: 650px;
    background: url('/building-8131378_640.jpg') center/cover;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border: 4px solid var(--gold-color);
    position: relative;
}

.innovative-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
    padding: 3.5rem;
    color: var(--white);
    border-top: 4px solid var(--gold-color);
    z-index: 2;
}

.overlay-content {
    max-width: 100%;
}

.overlay-title {
    font-size: 3.5rem;
    margin: 0 0 1rem 0;
    color: var(--gold-light);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
}

.overlay-text {
    font-size: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

.overlay-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border-left: 3px solid var(--gold-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--gold-color);
    font-size: 1.3rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-item span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-overlay {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-overlay:hover::before {
    left: 100%;
}

.btn-overlay:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

@media (max-width: 768px) {
    .innovative-image {
        height: 500px;
        min-height: 500px;
    }
    
    .overlay-title {
        font-size: 2.2rem;
    }
    
    .overlay-text {
        font-size: 1.2rem;
    }
    
    .overlay-features {
        grid-template-columns: 1fr;
    }
    
    .image-overlay {
        padding: 2rem;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f0f0 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.btn-services {
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--gold-color);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--light-color);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transform: scale(0);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--dark-color);
}

.service-content {
    padding: 2.5rem;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-underline {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: #555;
    font-size: 1rem;
    transition: all 0.3s;
}

.service-features li:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--gold-color);
    font-size: 1rem;
    width: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold-gradient);
    color: var(--dark-color) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold-dark);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

.service-btn i {
    transition: transform 0.3s;
}

.service-btn:hover i {
    transform: translateX(5px);
}


/* Footer Info Section */
.footer-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f0f0 100%);
    position: relative;
}

.footer-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.footer-info-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--gold-color);
    position: relative;
}

.footer-info-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.footer-info-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    border-top: 4px solid var(--gold-color);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h5 {
    margin-bottom: 1.5rem;
    color: var(--gold-color);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section p i {
    margin-right: 0.8rem;
    color: var(--gold-color);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.footer-section ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

.footer-section ul li:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.8;
}

.footer-bottom p {
    color: var(--gold-light);
}

/* Page Header - Genel Stil (Tüm Sayfalarda) */
.page-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), 
                url('/building-8131378_640.jpg') center/cover;
    padding: 8rem 0;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 4px solid var(--gold-color);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.page-header h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.6rem;
    color: var(--gold-light);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    letter-spacing: 1.5px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .btn-contact-header,
    .btn-quote-header {
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 100px;
        height: 50px;
    }
    
    .logo-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .logo-icon i {
        font-size: 1.5rem;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title,
    .section-title-center {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.3rem 0;
    }
    
    .page-header {
        padding: 5rem 0;
        min-height: 300px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .page-header p {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}
