/* ========== ROOT VARIABLES ========== */
:root {
    /* Navy and Rust Color Palette */
    --navy-dark: #0a1628;
    --navy: #0f1f3d;
    --navy-medium: #1a2d4a;
    --navy-light: #243b5e;
    --rust: #c84b31;
    --rust-dark: #a63d27;
    --rust-light: #d46048;
    --rust-pale: #f5e6e3;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6ea;
    --gray-300: #ced4da;
    --gray-500: #6c757d;
    --gray-700: #343a40;
    --gray-900: #1a1a2e;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
    --gradient-rust: linear-gradient(135deg, var(--rust) 0%, var(--rust-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    
    /* 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 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    color: var(--rust-light);
}

.divider {
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--rust-light);
    transform: translateY(-2px);
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--rust);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-rust);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(0deg) scale(1.05);
}

.logo-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--rust);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--rust);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(200, 75, 49, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-rust);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 75, 49, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 75, 49, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 8s ease;
}

@keyframes zoomIn {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 22, 40, 0.9) 0%, 
        rgba(15, 31, 61, 0.8) 50%, 
        rgba(200, 75, 49, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 100px 0;
}

.subtitle {
    display: inline-block;
    background: rgba(200, 75, 49, 0.2);
    color: var(--rust-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 75, 49, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--rust);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--white) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--rust) !important;
    opacity: 1;
    transform: scale(1.3);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
    padding: 40px 0;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rust);
    margin-left: 5px;
}

.stat-item p {
    color: var(--gray-300);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-rust);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-subtitle {
    display: inline-block;
    color: var(--rust);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-description {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--rust-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--rust);
    font-size: 1.2rem;
}

.feature-text h4 {
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1200px;
}

/* ===== SERVICE CARD ===== */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    border: 2px solid rgba(200, 75, 49, 0.08);
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg) scale(1.02);
    box-shadow:
        0 20px 40px rgba(200, 75, 49, 0.15),
        0 50px 80px rgba(200, 75, 49, 0.08);
    border-color: transparent;
}

/* ===== ROTATING GRADIENT BORDER ===== */
.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 21px;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--rust),
        var(--gold),
        var(--rust-dark),
        transparent
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: rotateBorder 3s linear infinite;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--white);
    z-index: -1;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

/* ===== SERVICE ICON ===== */
.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: var(--gradient-rust);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(200, 75, 49, 0.25);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(20px);
}

.service-card:hover .service-icon {
    transform: translateZ(40px) scale(1.1) rotate(0deg);
    box-shadow:
        0 8px 30px rgba(200, 75, 49, 0.4),
        0 0 40px rgba(200, 75, 49, 0.15);
}

.service-icon i {
    color: var(--white);
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15) rotate(-10deg);
}

/* ===== SERVICE IMAGE ===== */
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(200, 75, 49, 0.85) 0%,
        rgba(212, 168, 83, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease, clip-path 0.6s ease;
    z-index: 2;
    clip-path: circle(0% at 50% 50%);
}

.service-card:hover .service-image::after {
    opacity: 1;
    clip-path: circle(100% at 50% 50%);
}

/* diagonal wipe overlay */
.service-image .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.4) 0%,
        transparent 50%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover .img-overlay {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.2);
}

/* ===== SERVICE CONTENT ===== */
.service-content {
    padding: 25px;
    position: relative;
    z-index: 3;
    background: var(--white);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.service-card:hover .service-content {
    transform: translateZ(15px);
    padding-bottom: 30px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.service-card:hover .service-content h3 {
    color: var(--rust);
    transform: translateY(-3px);
}

.service-content p {
    color: var(--gray-500);
    margin-bottom: 15px;
    line-height: 1.6;
    transition: all 0.4s ease 0.05s;
    transform: translateY(0);
}

.service-card:hover .service-content p {
    color: var(--gray-700);
    transform: translateY(-3px);
}

/* ===== SERVICE FEATURES ===== */
.service-features {
    list-style: none;
    margin-bottom: 20px;
    overflow: hidden;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-20px);
    opacity: 0;
}

.service-card:hover .service-features li {
    transform: translateX(0);
    opacity: 1;
}

.service-card:hover .service-features li:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:hover .service-features li:nth-child(2) {
    transition-delay: 0.16s;
}

.service-card:hover .service-features li:nth-child(3) {
    transition-delay: 0.22s;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-features li::before {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(200, 75, 49, 0.5);
}

.service-card:hover .service-features li:nth-child(1)::before { transition-delay: 0.15s; }
.service-card:hover .service-features li:nth-child(2)::before { transition-delay: 0.21s; }
.service-card:hover .service-features li:nth-child(3)::before { transition-delay: 0.27s; }

/* ===== SERVICE LINK ===== */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rust);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding-bottom: 3px;
    transform: translateY(0);
    opacity: 0.9;
}

.service-card:hover .service-link {
    gap: 14px;
    opacity: 1;
    transform: translateY(-2px);
    color: var(--rust-dark);
}

.service-link i {
    transition: transform 0.4s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-description {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--rust-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--rust);
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--navy);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-social h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--rust);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(200, 75, 49, 0.1);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--rust-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(200, 75, 49, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.page-header p {
    color: var(--gray-300);
    font-size: 1.1rem;
    position: relative;
}

/* ========== FORM VALIDATION ========== */
.error-msg {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-error-banner {
    background: #fff3f3;
    color: #dc3545;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SUCCESS MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.8) translateY(20px);
    transition: var(--transition-slow);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: modalBounce 0.6s ease;
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

@keyframes modalBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.modal-text {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.modal-close-btn {
    min-width: 140px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-dark);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.newsletter h5 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--navy-light);
    border-radius: 10px;
    background: var(--navy-medium);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--rust);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-rust);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--rust-dark);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rust-light);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--navy-light);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--rust-light);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablets / Small Desktop */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.15rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        gap: 10px;
        font-size: 0.8rem;
    }

    .contact-info .divider:nth-child(2),
    .contact-info span:nth-child(3) {
        display: none;
    }
}

/* Medium Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        border-bottom: 2px solid var(--rust);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
    }

    .slide-content {
        padding: 120px 0 200px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .slide-buttons .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        position: relative;
        background: var(--navy-dark);
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-plus {
        font-size: 1.5rem;
    }

    .about-section,
    .services-section,
    .contact-section {
        padding: 60px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-image .image-wrapper {
        max-width: 100%;
    }

    .experience-badge {
        right: 10px;
        bottom: 20px;
        padding: 15px 25px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-image {
        height: 180px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .modal-content {
        padding: 35px 25px 30px;
        width: 92%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-icon i {
        font-size: 1rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .row .col-lg-7 {
        width: 100%;
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 640px) {
    .contact-info span:nth-child(5),
    .contact-info span:nth-child(6) {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about .logo {
        justify-content: center;
    }

    .footer-about .logo a {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        gap: 15px;
    }

    .about-grid {
        gap: 30px;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .top-bar {
        padding: 8px 0;
        font-size: 0.75rem;
    }

    .contact-info {
        gap: 8px;
        font-size: 0.75rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        font-size: 0.85rem;
    }

    .nav-wrapper {
        height: 65px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-icon i {
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        top: 65px;
    }

    .slide-content {
        padding: 100px 0 180px;
    }

    .subtitle {
        font-size: 0.75rem;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .slide-buttons .btn-lg {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        padding: 25px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-plus {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .about-section,
    .services-section,
    .contact-section {
        padding: 50px 0;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .about-grid {
        gap: 25px;
    }

    .about-image img {
        height: 280px;
    }

    .experience-badge {
        padding: 12px 18px;
        right: 5px;
        bottom: 15px;
    }

    .experience-badge .years {
        font-size: 1.6rem;
    }

    .experience-badge .text {
        font-size: 0.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 0.9rem;
    }

    .feature-text h4 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    .services-grid {
        gap: 20px;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 16px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .contact-form .form-row {
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .contact-text h4 {
        font-size: 0.95rem;
    }

    .contact-text p {
        font-size: 0.85rem;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .page-header {
        padding: 50px 0 35px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 35px 0 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 20px;
        gap: 10px;
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .modal-content {
        padding: 30px 20px 25px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-icon i {
        font-size: 2rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-text {
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-block {
        padding: 12px 20px;
    }

    .about-description {
        font-size: 0.9rem;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .slide-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .contact-info {
        font-size: 0.7rem;
        gap: 5px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }
}