* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    color: #333;
    background: #fafafa;
    max-width: 100vw;
    overflow-x: hidden;
}
p {
    line-height: 1.5;
    margin-bottom: 1rem;
}
main.container {
    padding: 0;
    max-width: 100%;
    width: 100%;
}
header .container {
    max-width: 100%;
    padding: 0.5rem 20px;
}
footer .container {
    max-width: 100%;
    padding: 20px;
}
header {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 0;
}
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    align-items: center;
}
nav ul .dropdown {
    margin-right: 2rem;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}
nav a:hover {
    color: #5e5521b9;
}
nav a img {
    transition: opacity 0.3s ease, filter 0.3s ease;
}
nav a:hover img {
    opacity: 0.85;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}
.dropdown {
    position: relative;
}
.dropdown-toggle {
    cursor: pointer;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    list-style: none;
    display: block;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
h1 {
    font-size: 2.5rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
    line-height: 1.3;
}
h2 {
    font-size: 2rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
    border-bottom: 3px solid #5e5521b9;
    padding-bottom: 8px;
    line-height: 1.3;
}
h3 {
    font-size: 1.5rem;
    margin: 1.2rem 0 0.6rem;
    color: #34495e;
    line-height: 1.3;
}
h2 + p, h3 + p {
    margin-top: 0.5rem;
}
h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #34495e;
}
section {
    margin: 2rem 0;
    padding: 1.5rem 0;
}
.content-section {
    margin: 0;
    padding: 40px 20px;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    background: #fafafa;
}
.bg-gradient-1 {
    background: #fafafa;
    border-left: 5px solid #2c3e50;
}
.bg-gradient-2 {
    background: #fafafa;
    border-left: 5px solid #5e5521b9;
}
.bg-gradient-3 {
    background: #fafafa;
    border-left: 5px solid #1a5026cc;
}
.bg-gradient-4 {
    background: #fafafa;
    border-left: 5px solid #1976d2;
}
.bg-gradient-5 {
    background: #fafafa;
    border-left: 5px solid #c2185b;
}
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}
.city-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #5e5521b9 #f0f0f0;
}
.city-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.city-scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.city-scroll-container::-webkit-scrollbar-thumb {
    background: #5e5521b9;
    border-radius: 10px;
}
.city-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #8b7a3a;
}
.city-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    flex: 0 0 300px;
    min-width: 300px;
}
.city-card:hover {
    border-color: #5e5521b9;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.city-card a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}
.city-card a:hover {
    color: #5e5521b9;
}
.price-box {
    background: #fff3cd;
    border-left: 4px solid #5e5521b9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}
.cta-button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px 10px 10px 0;
    transition: all 0.3s;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-button:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.whatsapp-button {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.whatsapp-button:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}
footer a {
    color: #5e5521b9;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
ul {
    margin-left: 20px;
    margin-top: 10px;
}
li {
    margin: 8px 0;
}
.breadcrumb {
    margin: 1rem 0;
}
.breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
form {
    margin-top: 20px;
    max-width: 600px;
}
form div {
    margin-bottom: 15px;
}
form label {
    display: block;
    margin-bottom: 5px;
}
form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd94;
    border-radius: 5px;
    font-family: inherit;
}
form button {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}
form button:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.floating-calc-btn {
    position: fixed;
    right: 20px;
    bottom: 255px;
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.floating-calc-btn:hover {
    background: rgba(44, 44, 44, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.floating-calc-btn:active {
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    body {
        line-height: 1.4;
    }
    p {
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    h1 {
        margin: 1.2rem 0 0.6rem;
        font-size: 1.8rem;
        line-height: 1.3;
    }
    h2 {
        margin: 1.2rem 0 0.6rem;
        font-size: 1.5rem;
        line-height: 1.3;
    }
    h3 {
        margin: 1rem 0 0.5rem;
        font-size: 1.2rem;
        line-height: 1.3;
    }
    section {
        padding: 15px;
    }
    .floating-calc-btn {
        right: 15px;
        bottom: 255px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .price-calculator {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
        padding: 15px !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .price-calculator > div[style*="grid"] {
        display: block !important;
        width: 100% !important;
        gap: 0 !important;
    }
    .price-calculator > div[style*="grid"] > div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-bottom: 15px;
        box-sizing: border-box;
        padding: 0;
        overflow: hidden;
    }
    .price-calculator > div[style*="grid"] > div > label {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    .price-calculator select,
    .price-calculator input[type="number"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        font-size: 16px;
        padding: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .price-calculator select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 40px;
    }
    #priceResult {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 15px !important;
        margin: 15px 0 !important;
    }
    #priceResult > div {
        width: 100% !important;
        box-sizing: border-box;
        font-size: 1.2rem !important;
        word-wrap: break-word;
    }
    #priceResult > div[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    main.container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    body {
        overflow-x: hidden;
    }
    .content-section {
        padding: 20px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
        overflow-x: hidden;
    }
    .content-section.bg-gradient-2 {
        padding: 20px 15px !important;
    }
}
@media (min-width: 769px) {
    .floating-calc-btn {
        right: 30px;
        bottom: 255px;
    }
}
.price-calculator {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.price-calculator label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}
.price-calculator select,
.price-calculator input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd94;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.price-calculator select:focus,
.price-calculator input[type="number"]:focus {
    outline: none;
    border-color: #5e5521b9;
    box-shadow: 0 0 0 2px rgba(94, 85, 33, 0.1);
}
#priceResult {
    background: #fff3cd;
    border-left: 4px solid #5e5521b9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-slider-section {
    margin: 0 0 3rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 15px;
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 90%;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.5);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-weight: 300;
    line-height: 1.6;
}
.hero-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #5e5521b9 0%, #8b7a3a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(94, 85, 33, 0.5), 0 0 0 0 rgba(94, 85, 33, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}
.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.hero-cta-button:hover::before {
    width: 300px;
    height: 300px;
}
.hero-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(94, 85, 33, 0.6), 0 0 0 4px rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #8b7a3a 0%, #5e5521b9 100%);
    color: #fff;
    text-decoration: none;
    border-color: rgba(255,255,255,0.5);
}
.hero-cta-button span {
    position: relative;
    z-index: 1;
}
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}
.hero-nav-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}
.hero-nav-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.8);
    transform: scale(1.1);
}
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.8);
}
.dot.active {
    background: #5e5521b9;
    width: 30px;
    border-radius: 6px;
    border-color: #fff;
}
.dot:hover {
    background: rgba(255,255,255,0.8);
}
@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        color: #ffffff;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .hero-slider-section {
        margin: 0 -10px 2rem -10px;
    }
}
.alternating-gallery {
    margin-top: 30px;
    overflow: hidden;
}
.gallery-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #5e5521b9 #f0f0f0;
}
.gallery-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.gallery-scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.gallery-scroll-container::-webkit-scrollbar-thumb {
    background: #5e5521b9;
    border-radius: 10px;
}
.gallery-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #8b7a3a;
}
.gallery-card {
    flex: 0 0 280px;
    width: 280px;
    height: 350px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}
.gallery-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gallery-card-content h3 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery-card-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.gallery-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5e5521b9 0%, #8b7a3a 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
    align-self: flex-start;
}
@media (max-width: 768px) {
    .gallery-card {
        flex: 0 0 240px;
        width: 240px;
        height: 320px;
    }
    .gallery-card-image {
        height: 180px;
    }
    .gallery-card-content h3 {
        font-size: 1rem;
    }
    .gallery-card-content p {
        font-size: 0.8rem;
    }
}
/* Content with Image Layout */
.content-with-image {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
}
.content-with-image.reverse {
    flex-direction: row-reverse;
}
.content-with-image .content-text {
    flex: 1;
    min-width: 300px;
    padding: 0;
}
.content-with-image .content-image {
    flex: 0 0 400px;
    max-width: 100%;
    padding: 0;
}
.content-with-image .content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
}
@media (max-width: 768px) {
    .content-with-image {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .content-with-image.reverse {
        flex-direction: column;
    }
    .content-with-image .content-image {
        flex: 1;
        width: 100%;
    }
}
 
