/* ================================
   GLOBAL STYLES
   ================================ */

:root {
    --primary-color: #f59e0b;
    --secondary-color: #111827;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
}

.display-4, .display-5, .display-6 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.8;
    color: var(--text-muted);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #d97706;
}

/* Divider */
.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #d97706 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.divider-light {
    border-top: 1px solid var(--border-color);
}

/* ================================
   SPACING UTILITIES
   ================================ */

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.gap-80 {
    gap: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 28px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* ================================
   NAVBAR
   ================================ */

.navbar-transparent {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 24px;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

.navbar.scrolled .navbar-brand {
    color: var(--secondary-color) !important;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.navbar.scrolled .nav-link {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: var(--white);
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--secondary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111827' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    background-attachment: fixed;
}

.hero-title {
    line-height: 1.2;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-feature:last-child {
    border-bottom: none;
}

.hero-feature i {
    font-size: 24px;
    color: var(--primary-color);
    width: 30px;
}

.hero-feature span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ================================
   SERVICE SECTION
   ================================ */

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d97706 100%);
    border-radius: 15px;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card h4 {
    color: var(--secondary-color);
    font-size: 18px;
}

/* ================================
   WHY US SECTION
   ================================ */

.why-us-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-us-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    font-size: 36px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ================================
   STATISTICS
   ================================ */

.stat-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.stat-box h3 {
    color: var(--primary-color);
}

.stat-box:hover h3 {
    color: var(--white);
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 500;
}

.stat-box:hover p {
    color: var(--white);
}

/* ================================
   FORM STYLES
   ================================ */

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.form-label {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

/* ================================
   PROCESS SECTION
   ================================ */

.process-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--light-bg);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 15px;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d97706 100%);
    border-radius: 50%;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.15) rotate(-10deg);
}

.process-card h4 {
    color: var(--secondary-color);
}

/* Timeline */
.timeline {
    text-align: center;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.timeline-content {
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: #d97706;
    transform: scale(1.2);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h5 {
    margin: 0;
    font-size: 16px;
}

.testimonial-header p {
    margin: 0;
    font-size: 13px;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 4px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

.swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
}

/* ================================
   COUNTERS
   ================================ */

.counter-item {
    padding: 20px;
}

.counter {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.counter-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/* ================================
   ACCORDION
   ================================ */

.accordion {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    background: var(--white);
    border: none;
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f59e0b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 20px 25px;
    background: var(--white);
}

/* ================================
   BLOG SECTION
   ================================ */

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h4 {
    color: var(--secondary-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #d97706;
    gap: 10px;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.cta-section h2 {
    color: var(--white);
}

/* ================================
   FOOTER
   ================================ */

footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    color: var(--white);
}

.footer-hours {
    color: rgba(255, 255, 255, 0.7);
}

.footer-hours p {
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

footer h5 {
    color: var(--white);
    margin-bottom: 20px;
}

/* ================================
   FLOATING BUTTONS
   ================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.5s ease-out;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.15);
}

.floating-btn.phone {
    background: var(--primary-color);
}

.floating-btn.phone:hover {
    background: #d97706;
    transform: scale(1.15);
}

.floating-btn.scroll-top {
    background: var(--secondary-color);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-btn.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.floating-btn.scroll-top:hover {
    background: var(--primary-color);
    transform: scale(1.15) translateY(-5px);
}

/* ================================
   MODAL STYLES
   ================================ */

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 2px solid var(--border-color);
}

.modal-title {
    color: var(--secondary-color);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* AOS Animation Overrides */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

.aos-animate {
    animation-duration: 1000ms;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* 1920px and above */
@media (min-width: 1920px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-section {
        height: 100vh;
    }
}

/* 1600px */
@media (max-width: 1600px) {
    .py-120 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .gap-80 {
        gap: 60px;
    }
}

/* 1400px */
@media (max-width: 1400px) {
    .display-4, .display-5 {
        font-size: 42px;
    }
    
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .gap-80 {
        gap: 50px;
    }
}

/* 1200px */
@media (max-width: 1200px) {
    .py-120 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero-section {
        margin-top: 70px;
        height: auto;
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-card {
        margin-top: 30px;
    }
    
    .gap-80 {
        gap: 40px;
    }
    
    .mb-80 {
        margin-bottom: 60px;
    }
}

/* 992px - Tablet */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }
    
    .hero-section {
        text-align: center;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .display-5 {
        font-size: 36px;
    }
    
    .py-120 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .gap-80 {
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* 768px - Tablet */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .display-5 {
        font-size: 32px;
    }
    
    .py-120 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .gap-80 {
        gap: 25px;
    }
    
    .mb-80 {
        margin-bottom: 50px;
    }
    
    .service-card,
    .why-us-card,
    .process-card {
        padding: 25px 20px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-card {
        margin-top: 20px;
    }
}

/* 576px - Mobile */
@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
        margin-top: 50px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .display-4, .display-5, .display-6 {
        font-size: 28px;
    }
    
    .py-120 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .py-80 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .gap-80 {
        gap: 15px;
    }
    
    .mb-80, .mb-60, .mb-40 {
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card,
    .why-us-card,
    .process-card,
    .blog-card {
        padding: 20px;
    }
    
    .service-icon,
    .why-us-icon,
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-number {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .hero-card {
        padding: 20px;
        margin-top: 20px;
    }
    
    .hero-feature {
        padding: 12px 0;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .quote-form .form-control,
    .quote-form .form-select {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .counter {
        font-size: 36px;
    }
    
    .counter-item p {
        font-size: 14px;
    }
    
    .floating-buttons {
        flex-direction: row;
        width: auto;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-header h5 {
        font-size: 14px;
    }
    
    .footer-menu li {
        margin-bottom: 10px;
    }
    
    .row.g-4 > [class*='col-'] {
        margin-bottom: 20px;
    }
}

/* 390px - Mobile */
@media (max-width: 390px) {
    .hero-section {
        min-height: 55vh;
        margin-top: 50px;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .display-4, .display-5, .display-6 {
        font-size: 24px;
    }
    
    .hero-card {
        padding: 18px;
    }
    
    .hero-feature i {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 13px;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
    }
    
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .process-card h4,
    .service-card h4 {
        font-size: 16px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* 360px - Small Mobile */
@media (max-width: 360px) {
    .hero-section {
        min-height: 50vh;
        margin-top: 50px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .display-4, .display-5, .display-6 {
        font-size: 22px;
    }
    
    .hero-card {
        padding: 15px;
    }
    
    .service-card p,
    .why-us-card p,
    .process-card p {
        font-size: 13px;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
}

/* 320px - Extra Small Mobile */
@media (max-width: 320px) {
    .hero-section {
        min-height: 50vh;
        margin-top: 50px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .display-4, .display-5, .display-6 {
        font-size: 20px;
    }
    
    .py-120 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .counter {
        font-size: 28px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.text-warning {
    color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.rounded-lg {
    border-radius: 15px;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ================================
   SCROLLBAR STYLING
   ================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .navbar,
    .floating-buttons,
    .cta-section {
        display: none;
    }
}
