/* Bootstrap Custom Styles for Deck Doc */
/* This file contains custom styling that works with Bootstrap */

:root {
    --primary-color: #ED6F23;
    --primary-dark: #d45f1a;
    --secondary-color: #b88e58;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

/* Typography */
body {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Navbar Customization */
.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.navbar-nav {
    flex: 1;
    justify-content: center;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-phone {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-phone:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        justify-content: flex-start;
    }
    
    .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.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.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(237, 111, 35, 0.9);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: #4CAF50;
    font-size: 1.3rem;
}

/* Hero Form */
.hero-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 420px;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.hero-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-form .form-control {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 111, 35, 0.1);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 111, 35, 0.4);
}

.btn-primary-custom.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 111, 35, 0.4);
    font-family: 'Poppins', sans-serif;
}

.btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 111, 35, 0.5);
    color: white;
    text-decoration: none;
}

/* Gallery Slider Section */
.gallery-slider-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.gallery-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.gallery-slider-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

#galleryCarousel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background-color: #000;
}

.gallery-slide-image {
    height: 500px;
    object-fit: cover;
    width: 100%;
    display: block;
    /* Enable hardware acceleration for smoother rendering */
    transform: translateZ(0);
    will-change: transform;
    /* Ensure images are rendered at full quality */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    opacity: 1;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.content-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(237, 111, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(237, 111, 35, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.content-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.content-image-wrapper:hover {
    transform: translateY(-5px);
}

.content-feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.content-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(237, 111, 35, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card-text {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    padding: 3rem 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(237, 111, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255,255,255,0.4);
}

.cta-icon i {
    font-size: 1.75rem;
    color: #2c3e50;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-card .btn-primary-custom {
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: white;
}

.cta-card .btn-primary-custom:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.why-choose-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.reviews-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reviews-section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.reviews-container {
    position: relative;
    min-height: 300px;
}

.reviews-container .ti-widget {
    margin: 0 auto;
}

/* Service Area Section */
.service-area-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.service-area-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-area-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-area-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(237, 111, 35, 0.3);
    margin-bottom: 2rem;
}

.service-area-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(237, 111, 35, 0.2);
    border-color: var(--primary-color);
}

.service-area-card:hover::before {
    transform: scaleX(1);
}

.service-area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-area-card:hover .service-area-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-area-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-area-region {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.service-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.service-area-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.service-area-card:hover .service-area-list li {
    color: var(--text-dark);
}

.service-area-card:hover .service-area-list li::before {
    transform: scale(1.2);
}

.service-area-note {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-area-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-area-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(237, 111, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(237, 111, 35, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(237, 111, 35, 0.15);
    border-color: rgba(237, 111, 35, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.faq-question:not(.collapsed) .faq-icon {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.faq-question:not(.collapsed) .faq-icon i {
    color: white;
}

.faq-question:not(.collapsed) .faq-question-text {
    color: white;
}

.faq-question:not(.collapsed) .faq-chevron {
    color: white;
    transform: rotate(180deg);
}

.faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
}

.faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.faq-chevron {
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    min-width: 20px;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    padding-left: calc(1.5rem + 50px + 1.25rem);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    background: white;
}

/* Feedback Section */
.feedback-section {
    padding: 4rem 0;
}

.feedback-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.feedback-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feedback-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.feedback-bottom-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding: 1.5rem 2rem;
    background: rgba(237, 111, 35, 0.05);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-logo img {
    max-height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-column-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contacts {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contacts a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-contacts .btn,
.footer-contacts .btn-primary-custom {
    color: white !important;
    text-decoration: none;
}

.footer-contacts .btn:hover,
.footer-contacts .btn-primary-custom:hover {
    color: white !important;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.15);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(237, 111, 35, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-form-card {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-subtitle {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-feature-image {
        height: 300px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card {
        padding: 2.5rem 2rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-section-title {
        font-size: 2rem;
    }
    
    .reviews-section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-slider-section {
        padding: 3rem 0;
    }
    
    .gallery-slider-title {
        font-size: 2rem;
    }
    
    .gallery-slide-image {
        height: 400px;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section-title {
        font-size: 2rem;
    }
    
    .faq-section-subtitle {
        font-size: 1rem;
    }
    
    .service-area-section {
        padding: 3rem 0;
    }
    
    .service-area-title {
        font-size: 2rem;
    }
    
    .service-area-subtitle {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .content-subtitle {
        font-size: 1.5rem;
    }
    
    .content-feature-image {
        height: 250px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .reviews-section {
        padding: 2.5rem 0;
    }
    
    .reviews-section-title {
        font-size: 1.75rem;
    }
    
    .reviews-section-subtitle {
        font-size: 0.95rem;
    }
    
    .gallery-slider-section {
        padding: 2.5rem 0;
    }
    
    .gallery-slider-title {
        font-size: 1.75rem;
    }
    
    .gallery-slider-subtitle {
        font-size: 1rem;
    }
    
    .gallery-slide-image {
        height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-indicators {
        margin-bottom: 1rem;
    }
    
    .service-area-section {
        padding: 2.5rem 0;
    }
    
    .service-area-title {
        font-size: 1.75rem;
    }
    
    .service-area-subtitle {
        font-size: 0.95rem;
    }
    
    .service-area-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .service-area-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-area-region {
        font-size: 1.25rem;
    }
    
    .service-area-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .service-area-note {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-section-title {
        font-size: 1.75rem;
    }
    
    .faq-section-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .faq-icon i {
        font-size: 1.1rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        padding-left: calc(1.25rem + 45px + 1rem);
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .footer-contacts {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}
