/* ========================================
   شركة دروب - للأجهزة المنزلية والكهربائية
   Modern RTL Website Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Color Palette - Rich Teal & Gold Theme */
    --primary: #0d7377;
    --primary-dark: #095456;
    --primary-light: #14a3a8;
    --accent: #d4a853;
    --accent-light: #e8c97e;
    --accent-dark: #b8923f;
    
    /* Neutrals */
    --dark: #1a1a2e;
    --dark-light: #252542;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    /* Backgrounds */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-cream: #fefbf3;
    --bg-gradient: linear-gradient(135deg, #0d7377 0%, #14a3a8 50%, #095456 100%);
    --bg-gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(13, 115, 119, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    --font-display: 'Tajawal', 'Cairo', sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-primary) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 20px;
    left: 20px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(2deg); }
}

.hero-content {
    padding-top: 120px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    font-size: 1.2rem;
    color: var(--accent);
}

.hero-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-card-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hero-card-icon i {
    font-size: 3rem;
    color: var(--dark);
}

.hero-card-label {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.experience-badge {
    background: white;
    padding: 25px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--bg-light);
}

.about-stats {
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.about-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-right: 5px solid var(--primary);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.about-card-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 0;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 2;
    margin: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--bg-white);
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    background: var(--bg-gradient-dark);
    position: relative;
}

.products-section .section-title,
.products-section .section-subtitle {
    color: white;
}

.products-section .section-title::after {
    background: var(--accent);
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.3) 0%, rgba(212, 168, 83, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: var(--accent);
    transition: var(--transition-normal);
}

.product-card:hover .product-image i {
    transform: scale(1.2);
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 10px;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    background: var(--bg-light);
}

.location-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-header i {
    font-size: 2rem;
    color: var(--primary);
}

.location-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

.location-image-wrapper {
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.location-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.location-image:hover {
    transform: scale(1.02);
}

.location-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: var(--radius-md);
}

.location-address i {
    font-size: 1.3rem;
    color: var(--primary);
}

.location-address span {
    font-weight: 600;
    color: var(--dark);
}

.contact-info-card {
    background: var(--bg-gradient);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    color: white;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info-grid {
    display: grid;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.3rem;
}

.contact-info-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 5px;
}

.contact-info-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--bg-white);
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--bg-light);
    padding: 20px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.gallery-slide {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .gallery-slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 575.98px) {
    .gallery-slide {
        min-width: 100%;
    }
}

.gallery-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-slide:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-image-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.gallery-image-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn i {
    font-size: 1.3rem;
}

.gallery-btn-prev {
    right: 30px;
}

.gallery-btn-next {
    left: 30px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-dot:hover {
    background: var(--primary-light);
}

.gallery-dot.active {
    background: var(--primary);
    width: 30px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--bg-cream);
}

.contact-simple-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
}

.contact-simple-card .contact-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.contact-simple-card .contact-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-simple-card .section-title {
    margin-bottom: 20px;
}

.contact-simple-card .section-title::after {
    display: none;
}

.contact-email {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    direction: ltr;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
}

.contact-form .form-floating > label {
    padding: 15px 20px;
    color: var(--text-secondary);
}

.contact-form .btn-primary {
    background: var(--bg-gradient);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: white;
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-brand span {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-right: 10px;
}

.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-legal {
    font-size: 0.85rem !important;
    margin-top: 10px !important;
    opacity: 0.6;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .about-card,
    .location-card,
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .footer-top {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .experience-badge {
        padding: 20px 30px;
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }
.bg-gradient-primary { background: var(--bg-gradient) !important; }
