/* ============================================
   MODERN DESIGN SYSTEM - DOTTED SPACE
   ============================================ */

:root {
    /* Construction Theme Palette - Premium Colors */
    --primary-dark: #0f172a;
    --primary-blue: #1e3a5f; /* Rich Navy Blue */
    --accent-red: #ff6b00; /* Construction Orange */
    --accent-yellow: #ffc107; /* Safety Yellow */
    --accent-teal: #0ea5e9; /* Accent Teal */
    --text-main: #334155;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    --gradient-header: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 58, 95, 0.95) 100%);
    --gradient-footer: linear-gradient(180deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ffc107 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(15,23,42,0.4), rgba(15,23,42,0.85));
    
    /* Typography - Premium Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   PAGE LOADER
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 0, 0.2);
    border-top-color: #ff6b00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-base);
}

.top-bar-left a:hover {
    color: var(--accent-red);
}

.top-bar-left i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.top-bar-right a:hover {
    color: var(--accent-red);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   FANCY TEXT & HEADINGS
   ============================================ */

.text-accent {
    color: var(--accent-red);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title,
.section-title-left {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-section.bg-light .section-title,
.page-section.bg-light .section-title-left {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
}

.sub-title {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 3px;
}

/* Construction Pattern Background */
.bg-pattern {
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
}

/* Animated Construction Icons */
@keyframes swing {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes bounce-tools {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin-cog {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-swing:hover i {
    animation: swing 1s ease-in-out;
}

.icon-bounce:hover i {
    animation: bounce-tools 0.5s ease-in-out;
}

.icon-spin:hover i {
    animation: spin-cog 2s linear infinite;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-rendering: optimizeLegibility;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: 2.75rem; 
    font-weight: 700;
}

h3 { 
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 { 
    font-size: 1.35rem;
    font-weight: 600;
}

h5 { 
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-red);
}

h6 { 
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTIONS
   ============================================ */

.page-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-light {
    background: var(--bg-light);
}

/* Colorful Section Backgrounds */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
}

.bg-gradient-navy .section-title,
.bg-gradient-navy .section-title-left {
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-navy .sub-title {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-navy p,
.bg-gradient-navy .lead {
    color: rgba(255,255,255,0.85);
}

.bg-cream {
    background: linear-gradient(180deg, #fef7ed 0%, #fff7ed 50%, #fefbf6 100%);
}

.bg-slate {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.bg-warm-gray {
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 50%, #fafaf9 100%);
}

.bg-soft-blue {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.bg-soft-orange {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 50%, #fff7ed 100%);
}

.bg-gradient-subtle {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, rgba(30, 58, 95, 0.05) 50%, rgba(255, 107, 0, 0.03) 100%);
}

.bg-pattern-dots {
    background-color: #fafafa;
    background-image: radial-gradient(rgba(30, 58, 95, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-pattern-lines {
    background-color: #fff;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        rgba(30, 58, 95, 0.03) 50px,
        rgba(30, 58, 95, 0.03) 51px
    );
}

/* Dark sections with orange accent */
.bg-dark-accent {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #fff;
    position: relative;
}

.bg-dark-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.bg-dark-accent .section-title,
.bg-dark-accent .section-title-left,
.bg-dark-accent h2, .bg-dark-accent h3 {
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
}

.bg-dark-accent .sub-title {
    color: var(--accent-red);
    background: none;
    -webkit-text-fill-color: unset;
}

.bg-dark-accent p {
    color: rgba(255,255,255,0.8);
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */

.text-accent {
    color: var(--accent-red);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Construction style underline */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: repeating-linear-gradient(
        45deg,
        var(--accent-red),
        var(--accent-red) 10px,
        var(--primary-dark) 10px,
        var(--primary-dark) 20px
    );
    margin: 15px auto 0;
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    margin: 15px 0 0;
}

.sub-title {
    display: block;
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px; /* Sharper corners */
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-red); /* Orange */
    color: var(--text-white);
    border-color: var(--accent-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.btn-outline-primary:hover {
    background: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

/* Scrolled Header State */
.header.scrolled {
    background: var(--gradient-header);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 107, 0, 0.3);
    padding: 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

/* Top Bar - Info Strip */
.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-red) 0%, 
        var(--accent-yellow) 50%, 
        var(--accent-red) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled::before {
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo h1 {
    font-size: 1.85rem;
    color: var(--text-white);
    margin: 0;
    letter-spacing: -1px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo h1 span {
    color: var(--accent-red);
    position: relative;
}

/* Construction accent on logo */
.logo h1 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 10px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text-white);
    background: rgba(255, 107, 0, 0.15);
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 100%;
}

/* Remove old underline effect */
.nav-menu li a::after {
    display: none;
}

.nav-cta {
    margin-left: 16px;
}

.nav-cta a {
    color: var(--primary-dark) !important;
    background: var(--accent-red) !important;
    border: none !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    animation: pulse-btn 2s ease-in-out infinite;
}

.nav-cta a:hover {
    background: var(--accent-yellow) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 107, 0, 0.6); }
}

.nav-cta a::before {
    display: none;
}

/* Nav CTA Group - Icons + Get a Quote Button */
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta-group .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta-group .contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-cta-group .contact-icon:hover::before {
    transform: scale(1);
}

.nav-cta-group .contact-icon:hover {
    color: var(--text-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.nav-cta-group .contact-icon i {
    position: relative;
    z-index: 1;
}

/* Responsive nav-cta-group - hide icons on mobile (use mobile-header-actions instead) */
@media (max-width: 991px) {
    .nav-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-cta-group .contact-icon {
        display: none; /* Hide on mobile - shown in mobile-header-actions instead */
    }
    
    .nav-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Header Actions - Icons beside toggle */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.15);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-contact-icon:hover {
    background: var(--accent-red);
    color: var(--text-white);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .mobile-header-actions {
        display: flex;
    }
}

.mobile-toggle {
    display: none;
    background: rgba(255, 107, 0, 0.2);
    border: 2px solid var(--accent-red);
    border-radius: 4px;
    color: var(--accent-red);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: var(--accent-red);
    color: var(--text-white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    color: var(--text-white);
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid rgba(233, 69, 96, 0.4);
    border-radius: 30px;
    color: #ff8fa3;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-white) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-red);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem !important;
}

.swiper-pagination-bullet {
    background: var(--text-white) !important;
    opacity: 0.5 !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition-base) !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--accent-red) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-bottom: 8px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ============================================
   PAGE SECTIONS GENERAL
   ============================================ */

.page-section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-red);
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.features-list {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-item i {
    color: var(--accent-red);
    font-size: 1.25rem;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-section {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 4px; /* Sharper corners for construction feel */
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-red); /* Orange accent */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1); /* Orange tint */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.service-icon i {
    font-size: 32px;
    color: var(--accent-red);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--accent-red);
    transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-card img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-base);
    width: 100%;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: var(--accent-red);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0;
}

.gallery-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-base);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-link {
    opacity: 1;
    transform: translateY(0);
}

.gallery-link:hover {
    background: var(--accent-red);
    color: var(--text-white);
}

/* Gallery Placeholder Styles */
.gallery-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
    border: 2px dashed rgba(255, 107, 0, 0.3);
}

.gallery-placeholder .placeholder-content {
    text-align: center;
    color: var(--text-white);
    padding: 30px;
}

.gallery-placeholder .placeholder-content i {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    display: block;
    animation: bounce-tools 2s ease-in-out infinite;
}

.gallery-placeholder .placeholder-content h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.gallery-placeholder .placeholder-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Placeholder Styles */
.news-placeholder .placeholder-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-bottom: 3px solid var(--accent-red);
}

.news-placeholder .placeholder-image i {
    font-size: 4rem;
    color: var(--accent-red);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-white);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    line-height: 1;
}

.news-date .day {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.news-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-meta i {
    color: var(--accent-red);
    margin-right: 6px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-content h3 a {
    color: var(--primary-dark);
    transition: var(--transition-base);
}

.news-content h3 a:hover {
    color: var(--accent-red);
}

.news-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.read-more-link:hover {
    color: var(--accent-red);
    gap: 10px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    padding: 60px 0;
}

.newsletter-wrapper {
    background: var(--primary-dark);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/pattern.png'); /* Optional pattern */
    background-size: cover;
}

.newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(30, 41, 59, 0.9) 100%);
    z-index: 0;
}

.newsletter-wrapper .row {
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ============================================
   FOOTER (UPDATED COLORS)
   ============================================ */

.footer {
    background: var(--gradient-footer);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--accent-red) 0%, 
        var(--accent-yellow) 25%, 
        var(--accent-red) 50%, 
        var(--accent-yellow) 75%, 
        var(--accent-red) 100%
    );
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-white) !important;
}

.footer-logo span {
    color: var(--accent-red);
}

.footer-desc {
    color: #ffffff !important; /* Forces white text */
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Updated Widget Headings */
.footer-widget h3 {
    color: #ffffff !important; /* Forces WHITE headings */
    font-size: 1.25rem;
    margin-bottom: 20px; /* Reduced margin since padding is gone */
    position: relative;
    padding-bottom: 0; /* REMOVED padding */
}

/* REMOVED UNDERLINE */
.footer-widget h3::after {
    display: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff !important; /* Forces WHITE links */
    transition: var(--transition-base);
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-red) !important;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: #ffffff !important; /* Forces white text */
}

.contact-info i {
    color: var(--accent-red) !important; /* Keeps icons orange */
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-base);
    text-decoration: none;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff !important; /* Forces white text */
    font-size: 0.95rem;
}

.text-md-right {
    text-align: right;
}

.designer-link {
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.designer-link:hover {
    color: var(--accent-yellow);
}

/* Footer Row/Column Layout */
.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-lg-2,
.footer .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.footer .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer .col-lg-2 {
    flex: 0 0 16.667%;
    max-width: 16.667%;
}

@media (max-width: 991px) {
    .footer .col-lg-4,
    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .footer .col-lg-4,
    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }
    
    .text-md-right {
        text-align: center;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 999;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .about-image-wrapper {
        margin-bottom: 50px;
    }
    
    .newsletter-wrapper {
        padding: 40px;
        text-align: center;
    }
    
    .newsletter-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-left {
        font-size: 2rem;
    }
    
    .experience-badge {
        padding: 20px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input,
    .search-input-group .btn {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ============================================
   3D HERO TEXT EFFECTS
   ============================================ */
.hero-content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.3),
        4px 4px 8px rgba(0,0,0,0.2),
        6px 6px 12px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    animation: hero3DText 1.2s ease-out;
    perspective: 1000px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    animation: hero3DSubtext 1.4s ease-out 0.2s backwards;
}

.hero-content .btn {
    animation: hero3DButton 1.6s ease-out 0.4s backwards;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-5px) rotateX(10deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(233,69,96,0.5);
}

@keyframes hero3DText {
    0% {
        opacity: 0;
        transform: translateZ(-200px) translateY(50px) rotateX(-20deg);
    }
    50% {
        opacity: 0.8;
        transform: translateZ(-50px) translateY(20px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateY(0) rotateX(0);
    }
}

@keyframes hero3DSubtext {
    0% {
        opacity: 0;
        transform: translateZ(-150px) translateY(30px) rotateX(-15deg);
    }
    100% {
        opacity: 0.95;
        transform: translateZ(0) translateY(0) rotateX(0);
    }
}

@keyframes hero3DButton {
    0% {
        opacity: 0;
        transform: translateZ(-100px) translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) translateY(0) scale(1);
    }
}

/* Enhanced 3D hover effect for hero slide */
.hero-slide {
    transition: transform 0.3s ease;
}

.swiper-slide-active .hero-content h2 {
    animation: hero3DText 1.2s ease-out;
}

.swiper-slide-active .hero-content p {
    animation: hero3DSubtext 1.4s ease-out 0.2s backwards;
}

.swiper-slide-active .hero-content .btn {
    animation: hero3DButton 1.6s ease-out 0.4s backwards;
}

/* Parallax effect on mouse move (optional enhancement) */
.hero-content {
    transition: transform 0.3s ease-out;
}

/* 3D perspective for entire hero section */
.hero {
    perspective: 2000px;
    perspective-origin: center;
}

/* Enhanced gradient overlay with 3D depth */
.hero-overlay {
    background: linear-gradient(
        135deg, 
        rgba(26,26,46,0.9) 0%, 
        rgba(15,52,96,0.8) 50%,
        rgba(26,26,46,0.7) 100%
    );
    backdrop-filter: blur(2px);
}

/* Responsive 3D effects */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 36px;
        text-shadow: 
            1px 1px 3px rgba(0,0,0,0.3),
            2px 2px 6px rgba(0,0,0,0.2);
    }
    
    @keyframes hero3DText {
        0% {
            opacity: 0;
            transform: translateZ(-100px) translateY(30px) rotateX(-10deg);
        }
        100% {
            opacity: 1;
            transform: translateZ(0) translateY(0) rotateX(0);
        }
    }
}

/* ============================================
   PAGE LOADER - PREMIUM LOADING ANIMATION
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: pulse-logo 2s ease-in-out infinite;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 0, 0.2);
    border-top: 4px solid #ff6b00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fade-pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   ENHANCED CARD STYLES WITH BORDERS
   ============================================ */

.card-enhanced {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow), var(--accent-teal));
}

.card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
}

/* Bordered Cards */
.card-bordered {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.card-bordered:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

/* Gradient Border Cards */
.card-gradient-border {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
}

.card-gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow), var(--primary-blue));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Glassmorphism Cards */
.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================
   ENHANCED COLUMN LAYOUTS
   ============================================ */

.row-enhanced {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 30px;
}

.col-enhanced {
    flex: 1;
    min-width: 280px;
    padding: 0 15px;
}

/* Three Column Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Two Column Split */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   INFO BOXES WITH STYLED BORDERS
   ============================================ */

.info-box-styled {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box-styled:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-box-styled .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red), #ff8c00);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.info-box-styled .content h4 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.info-box-styled .content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   ENHANCED HOVER EFFECTS
   ============================================ */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.4s ease;
}

.hover-rotate:hover {
    transform: rotate(3deg);
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 12px;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* ============================================
   DECORATIVE ELEMENTS & DIVIDERS
   ============================================ */

.divider-gradient {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    border: none;
    margin: 40px 0;
}

.divider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.divider-dots span {
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
}

.divider-dots span:nth-child(2) {
    background: var(--primary-dark);
}

.divider-dots span:nth-child(3) {
    background: var(--accent-yellow);
}

/* Decorative Border Box */
.border-box {
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.border-box::before,
.border-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent-red);
}

.border-box::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.border-box::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

/* ============================================
   ANIMATED COUNTERS & STATS
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .label {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ============================================
   ENHANCED FORM STYLING
   ============================================ */

.form-enhanced .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-enhanced .form-control:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    outline: none;
}

.form-enhanced label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: block;
}

/* Floating Labels */
.form-floating {
    position: relative;
}

.form-floating input,
.form-floating textarea {
    width: 100%;
    padding: 20px 15px 10px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-white);
    padding: 0 5px;
}

.form-floating input:focus,
.form-floating input:not(:placeholder-shown) {
    border-color: var(--accent-red);
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.85rem;
    color: var(--accent-red);
}

/* ============================================
   BADGES & TAGS
   ============================================ */

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-red), #ff8c00);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-outline {
    display: inline-block;
    padding: 5px 12px;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

[data-aos="fade-up-custom"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up-custom"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in-custom"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in-custom"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   SMOOTH SCROLL & SELECTION
   ============================================ */

::selection {
    background: var(--accent-red);
    color: white;
}

::-moz-selection {
    background: var(--accent-red);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-red));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.shadow-premium {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.border-accent {
    border: 2px solid var(--accent-red);
}

.rounded-xl {
    border-radius: 20px;
}

.p-section {
    padding: 80px 40px;
}

/* Smooth page transitions */
.page-content {
    animation: fadeInPage 0.5s ease-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Legal Links */
.legal-links {
    font-size: 0.9rem;
}

.legal-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .footer-bottom .row {
        text-align: center;
    }
    .footer-bottom .col-md-4 {
        margin-bottom: 10px;
    }
    .footer-bottom .text-md-right {
        text-align: center !important;
    }
}