/* ==========================================================================
   QMAKS ULTRA-LUXURY REAL ESTATE - STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME SETUP
   -------------------------------------------------------------------------- */

   @font-face {
    font-family: 'qmaks-body';
    src: url('calibri.ttf') format('truetype');
    font-style: normal;
}

   :root {
    /* Color Palette */
    --color-primary-blue: #0A192F; /* Deep Royal Blue */
    --color-primary-blue-light: #112240;
    --color-premium-black: #0F0F0F; /* Deep Charcoal/Black */
    --color-premium-dark: #1A1A1A;
    --color-gold-light: #F9DF9F;
    --color-gold-base: #D4AF37;
    --color-gold-dark: #AA771C;
    --color-white: #FFFFFF;
    --color-text-body: #666666;
    --color-text-light: #A0A0A0;
    --color-bg-light: #F8F9FA;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #D4AF37 50%, #FBF5B7 75%, #AA771C 100%);
    --gradient-gold-hover: linear-gradient(135deg, #AA771C 0%, #FBF5B7 25%, #D4AF37 50%, #FCF6BA 75%, #BF953F 100%);
    --gradient-dark: linear-gradient(to bottom, rgba(15,15,15,0) 0%, rgba(15,15,15,0.9) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    /* --font-body: 'Inter', sans-serif; */
    --font-body: 'qmaks-body', sans-serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 20px rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Spacing */
    --section-padding: 100px 0;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-premium-black);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-gold-base);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    color: var(--color-primary-blue);
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-gold {
    background: var(--gradient-gold);
    color: var(--color-primary-blue) !important;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-gold-hover);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary-gold:hover::before {
    opacity: 1;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary-blue) !important;
    border-color: var(--color-white);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-base);
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-text i {
    transition: var(--transition-smooth);
    width: 18px;
    height: 18px;
}

.btn-text:hover {
    color: var(--color-primary-blue);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   5. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    background: white;
}

.navbar.scrolled {
    /* background: rgba(10, 25, 47, 0.95); */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    color: #0A192F;
    letter-spacing: 2px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition-smooth);
}   

.navbar.scrolled .nav-logo img{
    height: 50px;
}

.nav-logo span {
    color: var(--color-gold-base);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    color: #0A192F;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 92vh;
    min-height: 600px;
    background-color: var(--color-premium-black);
    overflow: hidden;
}

.hero-slider, .hero-slide {
    height: 92vh;
}

.slide-image-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Starting point for zoom out animation */
    transition: transform 6s ease-out;
}

/* Active slide cinematic zoom out */
.slick-active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    padding-top: 80px; /* Offset for nav */
}

.slide-content h1 {
    /* color: var(--color-white); */
    color: var(--color-primary-blue);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-content p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Slick Dots Customization */
.hero-slider .slick-dots {
    bottom: 40px;
    text-align: left;
    padding-left: calc(var(--bs-gutter-x) * .5);
    max-width: 1320px; /* Match bootstrap container max-width */
    margin: 0 auto;
    left: 0;
    right: 0;
}

.hero-slider .slick-dots li {
    margin: 0 5px;
}

.hero-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--color-white);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--color-gold-base);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   7. MARQUEE SECTION
   -------------------------------------------------------------------------- */
.marquee-section {
    background-color: var(--color-primary-blue);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content span {
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    vertical-align: middle;
}

.marquee-icon {
    color: var(--color-gold-base);
    margin: 0 40px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-white);
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img {
    border-radius: 4px;
    box-shadow: var(--shadow-deep);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient-gold);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-deep);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content .btn-text {
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   9. STATS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
    background-color: var(--color-premium-black);
    color: var(--color-white);
    background-image: linear-gradient(rgba(15,15,15,0.95), rgba(15,15,15,0.95)), url('../img/pattern.png');
    background-attachment: fixed;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    color: var(--color-gold-base);
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   10. MISSION & VISION
   -------------------------------------------------------------------------- */
.mission-vision-section {
    background-color: var(--color-bg-light);
}

.mv-card {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
    border-bottom-color: var(--color-gold-base);
}

.mv-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon-wrapper i {
    width: 32px;
    height: 32px;
    color: var(--color-gold-base);
}

/* --------------------------------------------------------------------------
   11. CALL TO ACTION SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../img/serene-main.png'); /* Reuse image or standard bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.85);
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* --------------------------------------------------------------------------
   12. ONGOING PROJECTS (SLIDER)
   -------------------------------------------------------------------------- */
.projects-section {
    background-color: var(--color-white);
}

.ongoing-slider .slick-slide {
    margin: 0 15px;
}

.project-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    margin-bottom: 20px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

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

.project-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--color-primary-blue);
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.project-info {
    padding: 30px;
    border: 1px solid #E5E5E5;
    border-top: none;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.project-card:hover .project-info h3 {
    color: var(--color-gold-base);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.project-location i {
    width: 16px;
    height: 16px;
    color: var(--color-gold-base);
}

/* --------------------------------------------------------------------------
   13. COMPLETED PROJECTS (GRID)
   -------------------------------------------------------------------------- */
.completed-section {
    background-color: var(--color-bg-light);
}

.grid-project-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 350px;
}

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

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.grid-overlay h4 {
    color: var(--color-white);
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.grid-overlay p {
    color: var(--color-gold-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

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

.grid-project-card:hover .grid-overlay {
    opacity: 1;
}

.grid-project-card:hover .grid-overlay h4,
.grid-project-card:hover .grid-overlay p {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   14. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-choose-section {
    background-color: var(--color-white);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    transition: var(--transition-smooth);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--color-bg-light);
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary-blue);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
}

.feature-card:hover .feature-icon i {
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
}

.testimonial-intro .section-title {
    color: var(--color-white);
}

.testimonial-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    margin: 0 10px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold-base);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--color-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--color-gold-base);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-slider .slick-dots li button:before {
    color: var(--color-white);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--color-gold-base);
}

/* --------------------------------------------------------------------------
   16. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-white);
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(10, 25, 47, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .icon-box i {
    width: 24px;
    height: 24px;
    color: var(--color-primary-blue);
}

.contact-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--color-text-body);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--color-white);
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-primary-blue);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-base);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* --------------------------------------------------------------------------
   17. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--color-bg-light);
}

.custom-accordion .accordion-item {
    background: var(--color-white);
    border: 1px solid #E5E5E5;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.acc-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--color-gold-base);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
    padding: 0 25px 25px;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-premium-black);
    color: var(--color-text-light);
    padding-top: 80px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--color-gold-base);
}

.footer-about {
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--color-primary-blue);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    width: 14px;
    height: 14px;
    color: var(--color-gold-base);
    transition: transform 0.3s;
}

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

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--color-gold-base);
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .section-padding { padding: 70px 0; }
    
    .slide-content h1 { font-size: 3.5rem; }
    
    .about-image-wrapper { margin-bottom: 50px; }
    
    .contact-info-wrapper { margin-bottom: 40px; }
    
    /* Mobile Menu setup */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-primary-blue);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        padding: 50px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 50px 0; }
    
    .slide-content h1 { font-size: 2.5rem; }
    
    .section-title { font-size: 2rem; }
    
    .stat-item { margin-bottom: 30px; }
    
    .mv-card { margin-bottom: 30px; }
    
    .cta-section { padding: 80px 0; }
    .cta-section h2 { font-size: 2.25rem; }
    
    .contact-form-wrapper { padding: 30px; }
    
    .footer-widget { margin-bottom: 40px; }
    .nav-link{
        color: var(--color-white);
    }
    .nav-menu{
        justify-content: flex-start;
    }

    .navbar .nav-menu{
        top: 100px;
        /* height: calc(100vh-100px); */
        height: 86vh;
    }
    .navbar.scrolled .nav-menu{
        top: 60px;
        /* height: calc(100vh-60px); */
        height: 92vh;
    }
}

@media (max-width:500px) {
    .slide-image{
        object-position: left;
    }

    .btn{
        padding: 8px 10px;
        font-size: 14px;
    }

    .experience-badge{
        padding: 16px;
        right: 50px;
    }

    .experience-badge .years{
        font-size: 24px;
    }

    .experience-badge .text{
        font-size: 12px;
        line-height: 1.2;
    }
    .experience-badge .text br{
        display: none;  
    }

    .stat-item{
        padding: 10px;
    }

    .stat-number{
        font-size: 2.5rem;
    }

     .stat-text{
        font-size: 0.8rem;
    }
    .testimonial-slider {
        margin-top: 20px;
    }
    .testimonial-card{
        padding: 20px;
        height: 100%;
    }

     .testimonial-text{
        font-size: 1rem;
    }
    .mobile-menu-btn{
        color: var(--color-primary-blue);
    }
}