:root {
    --primary: #1b3c73;
    --secondary: #00b4d8;
    --accent: #f5a623;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #198754;
    --primary-hover: #15305c;
    --text-medium: #6c757d;
    --border-light: #e6e6e6;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --primary-dark: #142d57;
    --primary-light: #2a4e8a;
    --accent-light: #ffc107;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f8f9fa;
    --background-dark: #343a40;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    background-color: rgba(27, 60, 115, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Brand/Logo */
.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
}

.logo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.logo-img {
    width: 60px;
    height: 42px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.brand-text {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 0;
    text-transform: uppercase;
}

.brand-highlight {
    color: var(--accent);
    font-size: 1.7rem;
}



/* Navigation */
.primary-navigation {
    flex-grow: 1;
    margin-left: 3rem;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-item {
    margin: 0 0.5rem;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
}

.nav-link {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transform: translateY(100%);
    transition: var(--transition);
    pointer-events: none;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0);
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: translateY(-100%);
    opacity: 0;
}

/* CTA Button */
.cta-item {
    margin-left: 1rem;
}

.cta-link {
    background: var(--gradient-accent);
    color: var(--primary-dark) !important;
    border-radius: var(--border-radius);
    padding: 0.5rem 1.25rem !important;
    font-weight: 600 !important;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(245, 166, 35, 0.4);
}

.cta-link i {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
    transition: transform 0.3s ease !important;
}

.cta-link:hover i {
    transform: translateX(5px) !important;
    opacity: 1 !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}



/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 16px;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-nav-overlay.active .mobile-nav-container {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-brand {
    display: flex;
    align-items: center;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-close i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.mobile-navigation {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    background-color: rgba(27, 60, 115, 0.05);
    color: var(--primary);
}

.mobile-nav-link i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact-info {
    margin-bottom: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.mobile-contact-item i {
    width: 30px;
    height: 30px;
    background: rgba(27, 60, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.mobile-contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-contact-item a:hover {
    color: var(--primary);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-container {
        padding: 0.75rem 1.5rem;
    }

    .brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 0;
    text-transform: uppercase;
    }

    .brand-highlight {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    }
    
    .nav-item {
        margin: 0 0.3rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.5rem;
    }
}

@media (max-width: 992px) {
    .primary-navigation {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-img {
        width: 50px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .brand-subtitle {
        display: none;
    }
    
    .lang-selector {
        margin-right: 1rem;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .mobile-nav-container {
        width: 100%;
        max-width: none;
    }
}

/* Hero Section */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Styles */
.hero {
    background: var(--gradient-primary);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('img/barniere.jpg') no-repeat center right;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--text-light), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--accent);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-right: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--accent);
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary);
}

.services-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.service-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 18px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-pill a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}

/* Styles communs pour toutes les sections */
section {
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.title-separator {
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 0 auto 25px;
    position: relative;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-separator span {
    height: 8px;
    width: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: block;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    background-color: var(--primary);
    color: white;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.service-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    color: var(--secondary);
}

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

/* Pack Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: var(--border-light);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 0.5rem;
    border-radius: 8px;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured:before {
    content: "Populaire";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.pricing-features .not-included {
    text-decoration: line-through;
    color: var(--text-light);
}

.pricing-features .not-included i {
    color: #dc3545;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(27, 60, 115, 0.2);
    text-decoration: none;
}

.pricing-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 7px 20px rgba(27, 60, 115, 0.3);
    transform: translateY(-2px);
}

/* About Section */
.about {
    background-color: #f8f9fa;

}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.experience-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding-bottom: 50px;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(400px, 2fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 15px;
    transition: var(--transition);
}

.contact-item:hover .icon-container {
    background-color: var(--secondary);
    transform: rotate(10deg);
}

.icon-container.whatsapp {
    background-color: rgba(37, 211, 102, 0.2);
}

.icon-container.email {
    background-color: rgba(245, 166, 35, 0.2);
}

.icon-container i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.contact-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.social-media {
    margin-top: auto;
}

.social-media h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 10px;
}

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

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: var(--transition);
}

.input-with-icon.textarea i {
    top: 20px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 14px 15px 14px 45px;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background-color: #fff;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    outline: none;
}

.form-control:focus + i,
.input-with-icon:focus-within i {
    color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    padding-top: 14px;
}

.form-submit {
    text-align: right;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(27, 60, 115, 0.2);
}

.btn-submit:hover {
    background: var(--primary-hover);
    box-shadow: 0 7px 20px rgba(27, 60, 115, 0.3);
    transform: translateY(-2px);
}

.btn-submit span {
    margin-right: 10px;
}

.btn-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

/* Footer */
footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 600;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 0.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

.fade-in-left {
    animation: fadeInLeft 1s ease;
}

.fade-in-right {
    animation: fadeInRight 1s ease;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content, 
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }
    
    .pricing-table {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-submit {
        text-align: center;
    }
    
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .pricing-table, 
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}