/* =====================================================
   FINANCIAL FIRST SOLUTION - COMPLETE CSS
   ===================================================== */

/* ROOT VARIABLES */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00d4ff;
    --dark-color: #0a1929;
    --light-color: #f5f7fa;
    --white: #ffffff;
    --text-color: #333333;
    --gray-color: #666666;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* RESET & GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HEADER & NAVBAR
   ===================================================== */

.header {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9ff 100%);
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.sticky-header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.logo:hover {
    transform: translateX(5px);
}

.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-call,
.btn-whatsapp {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
}

.btn-call:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1fac41;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    box-shadow: var(--box-shadow);
    z-index: 99;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-color);
    transition: var(--transition);
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    padding: 14px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.btn-whatsapp-alt {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp-alt:hover {
    background: #1fac41;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 80px 20px;
    margin-top: 20px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.badge {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-background {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    filter: blur(40px);
}

/* =====================================================
   IMAGE SLIDER STYLES
   ===================================================== */

.image-slider-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    aspect-ratio: 16 / 9;
}

.image-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.slider-img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* =====================================================
   STATISTICS SECTION
   ===================================================== */

.statistics {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* =====================================================
   SERVICES SECTION - RECTANGLE GRID
   ===================================================== */

.services {
    padding: 80px 20px;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card > *:not(.service-icon) {
    padding: 0 20px;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 0 10px 0;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 15px;
    flex-grow: 1;
}

.service-card .btn-link {
    margin-bottom: 20px;
    padding: 0;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */

.why-choose {
    padding: 80px 20px;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 212, 255, 0.05));
    transform: translateY(-5px);
}

.why-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.why-card p {
    color: var(--gray-color);
    font-size: 15px;
}

/* =====================================================
   LOAN PROCESS SECTION
   ===================================================== */

.loan-process {
    padding: 80px 20px;
    background: var(--light-color);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    display: none;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.timeline-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* =====================================================
   EMI CALCULATOR SECTION
   ===================================================== */

.emi-calculator {
    padding: 80px 20px;
    background: var(--white);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.calculator-container h2 {
    font-size: 32px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 10px;
}

.calculator-container > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.calculator-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    border: none;
}

.calculator-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 102, 204, 0.1);
}

.result-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.result-item p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.result-item h3 {
    color: var(--primary-color);
    font-size: 24px;
}

/* =====================================================
   FRANCHISE SECTION
   ===================================================== */

.franchise {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
}

.franchise-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.franchise-container h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.franchise-container > p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 50px;
}

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.benefit-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* =====================================================
   ENQUIRY FORM SECTION
   ===================================================== */

.enquiry-section {
    padding: 80px 20px;
    background: var(--white);
}

.enquiry-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials {
    padding: 80px 20px;
    background: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-card .stars {
    color: var(--warning-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--gray-color);
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* =====================================================
   CONTACT CTA SECTION
   ===================================================== */

.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.contact-item i {
    font-size: 28px;
    min-width: 40px;
}

.contact-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}

.contact-item a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.map-placeholder p {
    font-size: 18px;
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */

.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 999;
    bottom: 30px;
}

.whatsapp-btn {
    background: #25d366;
    right: 30px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: var(--primary-color);
    right: 110px;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .image-slider-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero {
        padding: 60px 20px;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        display: flex;
        flex-direction: column;
    }
    
    .service-icon {
        height: 120px;
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .calculator-result {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .call-btn {
        right: 30px;
        bottom: 100px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar-container {
        gap: 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .btn-call,
    .btn-whatsapp {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero {
        padding: 40px 15px;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-icon {
        height: 100px;
        font-size: 32px;
    }
    
    .service-card > *:not(.service-icon) {
        padding: 0 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin: 15px 0 8px 0;
    }
    
    .why-card {
        padding: 20px;
    }
    
    .calculator-container {
        padding: 30px 20px;
    }
    
    .enquiry-container {
        padding: 30px 20px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 20px;
    }
    
    .whatsapp-btn {
        right: 20px;
    }
    
    .call-btn {
        right: 20px;
        bottom: 80px;
    }
    
    .footer-content {
        gap: 30px;
    }
}
/* =====================================================
   SERVICES SECTION - NEW RESPONSIVE DESIGN
   ===================================================== */

.services {
    padding: 80px 20px;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
}

/* DESKTOP LAYOUT - GRID WITH EQUAL HEIGHT CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-color);
}

.card-inner {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

/* DESKTOP: LEFT SIDE - IMAGE AREA */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 212, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* DESKTOP: RIGHT SIDE - CONTENT AREA */
.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.card-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-apply {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    align-self: flex-start;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* =====================================================
   TABLET LAYOUT (768px - 1024px)
   ===================================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 20px;
    }
}

/* =====================================================
   TABLET/MOBILE LAYOUT (Below 768px)
   HORIZONTAL LAYOUT: Image Left 30-35%, Content Right 65-70%
   ===================================================== */

@media (max-width: 768px) {
    .services {
        padding: 60px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-inner {
        flex-direction: row;
        height: 220px;
    }
    
    /* Image takes 30-35% width on mobile */
    .card-image {
        width: 32%;
        height: 100%;
        min-width: 100px;
        flex-shrink: 0;
        border-radius: var(--border-radius) 0 0 var(--border-radius);
    }
    
    .card-image img {
        object-fit: cover;
    }
    
    /* Content takes 68-70% width on mobile */
    .card-content {
        width: 68%;
        padding: 18px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .card-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .card-content p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .btn-apply {
        padding: 10px 16px;
        font-size: 12px;
        align-self: flex-end;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
}

/* =====================================================
   MOBILE LAYOUT (480px and below)
   ===================================================== */

@media (max-width: 480px) {
    .services {
        padding: 40px 12px;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .card-inner {
        height: 180px;
    }
    
    .card-image {
        width: 35%;
    }
    
    .card-content {
        width: 65%;
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .card-content p {
        font-size: 12px;
        margin-bottom: 10px;
        -webkit-line-clamp: 1;
    }
    
    .btn-apply {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

/* =====================================================
   SMALL MOBILE (360px)
   ===================================================== */

@media (max-width: 360px) {
    .card-inner {
        height: 160px;
    }
    
    .card-image {
        width: 40%;
    }
    
    .card-content {
        width: 60%;
        padding: 12px;
    }
    
    .card-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .card-content p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .btn-apply {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    margin-top: 60px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
    background: var(--white);
}

.about-intro h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
}

.about-intro p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision {
    padding: 80px 20px;
    background: var(--light-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.mvv-card p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

.core-values {
    padding: 80px 20px;
    background: var(--white);
}

.core-values h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 212, 255, 0.05));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.value-item i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.value-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

.team-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.team-section > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 60px;
    font-size: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
}

.team-member h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.team-member .bio {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.member-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.achievements {
    padding: 80px 20px;
    background: var(--white);
}

.achievements h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.achievement-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.achievement-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.achievement-item p {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
}

.why-partner {
    padding: 80px 20px;
    background: var(--light-color);
}

.why-partner h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.why-partner > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 16px;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.benefit i {
    font-size: 36px;
    color: var(--success-color);
    margin-bottom: 15px;
    display: block;
}

.benefit h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

.about-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
}

/* =====================================================
   SERVICES PAGE STYLES
   ===================================================== */

.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    margin-top: 60px;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 20px;
    background: var(--white);
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 50px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.service-intro {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    font-style: italic;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.service-info {
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-block p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 15px;
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block ul li {
    color: var(--gray-color);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.info-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.comparison-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.comparison-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    font-size: 15px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-color);
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 102, 204, 0.05);
}

.comparison-table td strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    margin-top: 60px;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-main {
    padding: 80px 20px;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 212, 255, 0.05));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.info-content h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 14px;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.map-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.map-section > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 16px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 80px 20px;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.faq-section > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 60px;
    font-size: 16px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-color);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 102, 204, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =====================================================
   RESPONSIVE DESIGN - ALL PAGES
   ===================================================== */

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail {
        padding: 40px;
    }
    
    .mission-vision .container,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .about-intro h2,
    .core-values h2,
    .team-section h2,
    .comparison-section h2,
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .service-detail {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .service-detail-content h2 {
        font-size: 28px;
    }
    
    .mvv-card,
    .value-item,
    .team-member,
    .achievement-item,
    .benefit {
        padding: 25px;
    }
    
    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .services-hero,
    .contact-hero {
        padding: 60px 20px;
        margin-top: 70px;
    }
    
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 24px;
    }
    
    .about-intro h2,
    .core-values h2,
    .team-section h2,
    .comparison-section h2 {
        font-size: 22px;
    }
    
    .about-intro,
    .mission-vision,
    .core-values,
    .team-section,
    .achievements,
    .why-partner,
    .services-detailed,
    .comparison-section,
    .contact-main,
    .map-section,
    .faq-section {
        padding: 40px 15px;
    }
    
    .service-detail {
        padding: 20px 15px;
    }
    
    .info-block h3 {
        font-size: 18px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 13px;
    }
    
    .mvv-card,
    .value-item,
    .team-member,
    .benefit {
        padding: 20px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 48px;
    }
    
    .achievement-item h3 {
        font-size: 28px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 15px;
    }
    
    .contact-form,
    .contact-form .form-group {
        gap: 15px;
    }
}

/* =====================================================
   IMAGE & LOGO OPTIMIZATION
   ===================================================== */

/* SERVICES SECTION - IMAGE FIT */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 212, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    background: var(--white);
    transition: var(--transition);
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

/* HERO SECTION - IMAGE SLIDER */
.image-slider-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    aspect-ratio: 16 / 9;
}

.image-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.slider-img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}

/* TEAM MEMBER AVATAR */
.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
    overflow: hidden;
    flex-shrink: 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* LOGO IN HEADER */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.logo img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo i {
    font-size: 28px;
    min-width: 28px;
}

/* SERVICE ICON */
.service-icon {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.service-icon img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* SERVICE DETAIL ICON */
.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-detail-icon img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* WHY CHOOSE CARD ICON */
.why-card i,
.value-item i,
.benefit i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card img,
.value-item img,
.benefit img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* MVV CARD ICON */
.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    overflow: hidden;
}

.mvv-icon img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* BENEFIT ITEM ICON */
.benefit-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    min-height: 45px;
}

.benefit-item img {
    max-width: 45px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* =====================================================
   RESPONSIVE - IMAGE SIZES
   ===================================================== */

@media (max-width: 768px) {
    .card-image {
        width: 32%;
        height: 100%;
        min-width: 100px;
        flex-shrink: 0;
        border-radius: var(--border-radius) 0 0 var(--border-radius);
        padding: 10px;
    }
    
    .card-image img {
        padding: 8px;
    }
    
    .slider-img {
        object-fit: cover;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 48px;
    }
    
    .service-icon {
        height: 120px;
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .card-image {
        width: 35%;
        padding: 8px;
    }
    
    .card-image img {
        padding: 6px;
    }
    
    .member-image {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        max-width: 32px;
        max-height: 32px;
    }
    
    .logo i {
        font-size: 22px;
        min-width: 22px;
    }
    
    .service-icon {
        height: 100px;
        font-size: 32px;
    }
    
    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
}
/* =====================================================
   TEAM MEMBER IMAGE STYLING
   ===================================================== */

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member:hover .member-image {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

@media (max-width: 768px) {
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 48px;
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .member-image {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin: 0 auto 12px;
        border-width: 3px;
    }
}

/* =====================================================
   GALLERY PAGE STYLES
   ===================================================== */

.gallery-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    margin-top: 60px;
}

.gallery-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-hero .hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.gallery-section {
    padding: 80px 20px;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-header p {
    font-size: 18px;
    color: var(--gray-color);
}

/* GALLERY FILTER BUTTONS */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--light-color);
    color: var(--text-color);
    border: 2px solid var(--light-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-color);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-btn:hover {
    transform: scale(1.15);
}

.gallery-caption {
    padding: 15px 20px;
    background: var(--light-color);
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.8);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.modal-nav:hover {
    background: var(--primary-color);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* GALLERY CTA */
.gallery-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.gallery-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.gallery-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE GALLERY
   ===================================================== */

@media (max-width: 768px) {
    .gallery-hero .hero-content h1 {
        font-size: 36px;
    }
    
    .gallery-header h2 {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 60px 20px;
        margin-top: 70px;
    }
    
    .gallery-hero .hero-content h1 {
        font-size: 24px;
    }
    
    .gallery-header h2 {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .modal-nav {
        padding: 10px 15px;
        font-size: 24px;
    }
    
    .modal-close {
        font-size: 30px;
    }
}

/* =====================================================
   HERO SECTION - RECTANGULAR SLIDER
   ===================================================== */

.hero {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    padding: 0;
    margin-top: 20px;
    min-height: auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.badge {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-background {
    position: absolute;
    width: 500px;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 20px;
    filter: blur(40px);
    z-index: 0;
}

/* =====================================================
   RECTANGULAR IMAGE SLIDER
   ===================================================== */

.image-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    z-index: 1;
}

.image-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16 / 10;
    background: var(--white);
}

.image-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* SLIDER CONTROLS */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.slider-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.prev-btn {
    margin-left: 0;
}

.next-btn {
    margin-right: 0;
}

/* SLIDER DOTS */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--primary-color);
}

/* =====================================================
   RESPONSIVE SLIDER
   ===================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .image-slider-container {
        aspect-ratio: 16 / 10;
    }
    
    .image-background {
        width: 400px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .image-slider-container {
        aspect-ratio: 16 / 10;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-width: 1px;
    }
    
    .image-background {
        width: 300px;
        height: 210px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 20px;
        padding: 30px 12px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .image-slider-container {
        aspect-ratio: 16 / 10;
        max-width: 100%;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 0;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-dots {
        bottom: 10px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        transform: scale(1.2);
    }
    
    .image-background {
        width: 250px;
        height: 175px;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 20px;
    }
    
    .image-slider-container {
        aspect-ratio: 14 / 10;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .image-background {
        width: 220px;
        height: 160px;
    }
}
/* =====================================================
   PARTNER PAGE STYLES
   ===================================================== */

.partner-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    margin-top: 60px;
}

.partner-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-hero .hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* PARTNERSHIP BENEFITS */
.partnership-benefits {
    padding: 80px 20px;
    background: var(--white);
}

.partnership-benefits h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

/* PARTNERSHIP MODELS */
.partnership-models {
    padding: 80px 20px;
    background: var(--light-color);
}

.partnership-models h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.partnership-models > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 60px;
    font-size: 16px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.model-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.model-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.model-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.model-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.model-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.model-badge.featured-badge {
    background: var(--warning-color);
    color: var(--dark-color);
}

.model-content {
    padding: 30px 20px;
}

.model-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.model-content ul li {
    padding: 10px 0;
    color: var(--gray-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.model-content ul li i {
    color: var(--success-color);
    font-size: 18px;
}

.model-content .btn {
    width: 100%;
}

/* REQUIREMENTS */
.partnership-requirements {
    padding: 80px 20px;
    background: var(--white);
}

.partnership-requirements h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.requirement-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.requirement-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.requirement-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* PARTNERSHIP PROCESS */
.partnership-process {
    padding: 80px 20px;
    background: var(--light-color);
}

.partnership-process h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 0 0 calc(16.666% - 20px);
    min-width: 120px;
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    font-size: 13px;
    color: var(--gray-color);
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
    flex: 0 0 auto;
}

/* PARTNERSHIP FORM */
.partnership-form-section {
    padding: 80px 20px;
    background: var(--white);
}

.partnership-form-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.partnership-form-section > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 16px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* PARTNER FAQ */
.partner-faq {
    padding: 80px 20px;
    background: var(--light-color);
}

.partner-faq h2 {
    text-align: center;
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: var(--white);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 212, 255, 0.05));
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* PARTNER CTA */
.partner-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.partner-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =====================================================
   RESPONSIVE PARTNER PAGE
   ===================================================== */

@media (max-width: 768px) {
    .partner-hero .hero-content h1 {
        font-size: 36px;
    }
    
    .partnership-benefits h2,
    .partnership-models h2,
    .partnership-requirements h2,
    .partnership-process h2,
    .partner-faq h2,
    .partner-cta h2 {
        font-size: 32px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model-card.featured {
        transform: scale(1);
    }
    
    .model-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-timeline {
        gap: 10px;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 10px);
        min-width: 100px;
    }
    
    .process-arrow {
        flex: 0 0 100%;
        transform: rotate(90deg);
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partner-hero {
        padding: 60px 20px;
        margin-top: 70px;
    }
    
    .partner-hero .hero-content h1 {
        font-size: 24px;
    }
    
    .partnership-benefits h2,
    .partnership-models h2,
    .partnership-requirements h2,
    .partnership-process h2,
    .partner-faq h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .benefits-grid,
    .models-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .model-card,
    .requirement-card {
        padding: 25px;
    }
    
    .form-wrapper {
        padding: 20px 15px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
}
.footer-bottom a{
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover{
    text-decoration: underline;
}