@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --color-orange: #FF7B00;
    --color-orange-hover: #E66F00;
    --color-yellow: #FFC000;
    --color-blue-dark: #0A192F;
    --color-blue-petroleum: #112B4C;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F7FA;
    --color-gray-text: #4A5568;

    /* Layout Variables */
    --header-height: 80px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Initial Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-gray-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-blue-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-blue-dark);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--color-orange);
}

.text-white {
    color: var(--color-white);
}

.section-title {
    font-size: 2.7rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, #1a365d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), #FF9500);
    border-radius: 4px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-text);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, #FF9500 100%);
    color: var(--color-white) !important;
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.25);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF9500 0%, var(--color-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 123, 0, 0.35);
}

.btn-secondary {
    background: var(--color-blue-dark);
    color: var(--color-white) !important;
}

.btn-secondary:hover {
    background: var(--color-blue-petroleum);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange) !important;
}

.btn-outline:hover {
    background: var(--color-orange);
    color: var(--color-white) !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-blue-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius-sm);
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--color-gray-text);
    font-weight: 500;
}

.dropdown-menu a:hover {
    color: var(--color-orange);
    background: var(--color-gray-light);
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-blue-dark);
}

.nav-phone i {
    color: var(--color-orange);
    font-size: 1.2rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-blue-dark);
    cursor: pointer;
}

/* Hero Section / Slider (Classic Layout) */
.hero-classic {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    display: block;
    overflow: hidden;
    background: var(--color-blue-dark);
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-classic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out, transform 5s linear;
    transform: scale(1.05);
    /* Slight zoom out effect */
}

.slide-classic.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.3) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.slide-content {
    max-width: 800px;
    padding: 2rem 0;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.dot-badge {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    display: inline-block;
}

.slide-title-large {
    font-size: 4.8rem;
    line-height: 1.1;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.slide-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-blue-dark) !important;
    border-color: var(--color-white);
}

/* Controls */
.classic-slider-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.classic-slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    /* Extremely low opacity */
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    /* Muted icon */
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.classic-slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dots .dot.active {
    background: var(--color-orange);
    transform: scale(1.3);
}

.d-none-mobile {
    display: flex;
}

/* Reassurance Bar */
.reassurance-bar {
    background: linear-gradient(90deg, var(--color-blue-dark) 0%, rgb(18, 44, 82) 100%);
    padding: 2.5rem 0;
    color: var(--color-white);
    border-top: 3px solid var(--color-orange);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.reassurance-icon {
    font-size: 2rem;
    color: var(--color-yellow);
}

.reassurance-text h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.reassurance-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Sections General */
section {
    padding: var(--spacing-xl) 0;
}

.section-bg {
    background: var(--color-gray-light);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

/* About / Intro Section */
.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 8px solid var(--color-white);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Services Cards */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: -1;
}

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

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.05) 0%, rgba(255, 123, 0, 0.15) 100%);
    border: 1px solid rgba(255, 123, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.08);
    transform: rotate(-3deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(0) scale(1.08);
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 0;
    display: inline-block;
    transition: color 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-blue-dark);
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--color-orange);
}

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

/* Why Choose Us */
.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 123, 0, 0.1);
    color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Key Numbers */
.stats-section {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600') center/cover fixed;
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Process Timeline Horizontal Desktop */
.process-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
    margin-top: 4rem;
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    /* middle of the icon */
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 123, 0, 0.1) 0%, rgba(255, 123, 0, 1) 50%, rgba(255, 123, 0, 0.1) 100%);
    z-index: 0;
}

.process-item {
    background: var(--color-white);
    padding: 2.5rem 2rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    flex: 1;
    z-index: 1;
    border-top: 4px solid var(--color-blue-dark);
    transition: var(--transition);
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-orange);
}

.process-num {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: -5rem auto 1.5rem;
    /* pulls the icon up above the card */
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
    border: 5px solid var(--color-white);
    transition: transform 0.4s ease;
}

.process-item:hover .process-num {
    transform: rotate(360deg);
}

/* Realisations Preview */
.project-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.project-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-info {
    opacity: 1;
}

.project-info h4 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-info p {
    color: var(--color-yellow);
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-info h4,
.project-card:hover .project-info p {
    transform: translateY(0);
}

/* Team Section */
.team-section {
    background-color: var(--color-white);
}

.team-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-gray-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 100%;
    height: 300px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
    color: var(--color-blue-dark);
}

.team-info p {
    color: var(--color-blue-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.team-divider {
    border: none;
    border-top: 1px solid rgba(10, 25, 47, 0.1);
    margin-bottom: 20px;
}

.team-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    color: var(--color-blue-dark);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.team-social a:hover {
    opacity: 1;
    color: var(--color-orange);
}

.team-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 6px 6px 15px;
    border-radius: 30px;
    color: var(--color-blue-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.team-profile-btn:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.team-profile-btn .icon {
    width: 32px;
    height: 32px;
    background: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.team-profile-btn:hover .icon {
    transform: scale(1.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-blue-dark);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
}

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

/* FAQ Accordion */
.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--color-white);
    transition: var(--transition);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-blue-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-orange);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(255, 123, 0, 0.05);
}

/* Internal Banner */
.page-banner {
    height: 400px;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
}

.page-banner h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.breadcrumb a {
    color: var(--color-orange);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* CTA Section */
.cta-section {
    background: var(--color-blue-petroleum);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--color-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-xl) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.footer-text {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--color-orange);
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--color-orange);
    margin-top: 5px;
}

.footer-bottom {
    background: #061121;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: var(--color-orange);
}

/* --- Added Styles for Slider Improvements & Customer Reviews --- */

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

/* Reviews Section Styles */
.reviews-section {
    padding: var(--spacing-xl) 0;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    padding: 0;
}

.review-user-info {
    flex-grow: 1;
}

.review-user-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-blue-dark);
}

.review-date {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    opacity: 0.8;
}

.google-icon {
    font-size: 1.5rem;
    color: #4285F4;
}

.review-stars {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-text);
    position: relative;
    flex-grow: 1;
    z-index: 2;
}

/* Partners & Clients Marquee */
.partners-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    overflow: hidden;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    display: flex;
}

/* Fading edges */
.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-marquee 30s linear infinite;
    min-width: 200%;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Logo 1: ESPACE SAHRAOUI */
.logo-espace {
    font-family: 'Times New Roman', serif;
    font-weight: 800;
    color: #1a5e9e;
    font-size: 1.4rem;
    gap: 0.5rem;
    letter-spacing: 1px;
}

/* Logo 2: HYDRAPRO */
.logo-hydrapro {
    flex-direction: column;
    color: #436d2e;
    font-family: 'Times New Roman', serif;
    text-align: center;
}

.hydra-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-bottom: 2px solid #436d2e;
    margin-bottom: 5px;
    padding-bottom: 2px;
}

.hydra-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 1px solid #436d2e;
    padding-top: 2px;
}

/* Logo 3: JULIEVA */
.logo-julieva {
    flex-direction: column;
    color: #0b1d3a;
    font-family: 'Georgia', serif;
    text-align: center;
}

.julieva-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.julieva-sub {
    font-size: 0.7rem;
    font-style: italic;
    font-weight: 600;
}

/* Logo 4: NOORVA */
.logo-noorva {
    font-family: 'Georgia', serif;
}

.noorva-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-top: 10px;
}

.noorva-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0e6b36;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.noorva-text::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    height: 12px;
    background: #ffb822;
    z-index: -1;
}

.green-it {
    font-size: 0.9rem;
    font-family: sans-serif;
    color: #0e6b36;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Logo 5: LUXURY QUADS */
.logo-quads {
    gap: 15px;
}

.quads-icon {
    width: 60px;
    height: 60px;
    background: #3c3b5d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ff4e81;
    font-size: 1.5rem;
    border: 2px solid #ea5c7c;
}

.quads-icon .fa-tree {
    position: absolute;
    font-size: 1rem;
    right: 8px;
    top: 15px;
    opacity: 0.8;
}

.quads-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quads-title {
    font-size: 1rem;
    font-weight: 900;
    color: #4a496b;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quads-sub {
    font-size: 0.65rem;
    font-family: sans-serif;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
}

/* Technical Partners */
.tech-partners-section {
    padding: var(--spacing-sm) 0 var(--spacing-lg) 0;
    background: var(--color-white);
}

.tech-partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2.5rem;
    padding: 0 20px;
}

.tech-line {
    flex-grow: 1;
    height: 1px;
    background: var(--color-gray-text);
    opacity: 0.2;
    max-width: 300px;
}

.tech-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin: 0;
    white-space: nowrap;
}

.tech-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.tech-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: grayscale(100%) opacity(0.6);
    cursor: default;
}

.tech-partner-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-3px);
}

.tech-img-logo {
    max-height: 40px;
    width: auto;
}

/* DEYE */
.logo-deye {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    font-family: 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1px;
    line-height: 1;
}

/* Jinko */
.logo-jinko {
    font-size: 2.2rem;
    font-weight: 800;
    color: #7ab800;
    /* Jinko green */
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.logo-jinko i {
    font-style: italic;
    margin-right: 3px;
}

.logo-jinko span {
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    margin-top: 3px;
    opacity: 0.8;
}

/* JA Solar */
.logo-jasolar {
    font-size: 1.9rem;
    font-weight: 800;
    color: #005eb8;
    /* JA Solar blue */
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

/* Dyness */
.logo-dyness {
    font-size: 2rem;
    font-weight: 800;
    color: #005a8c;
    /* Dyness blue */
    font-family: 'Arial', sans-serif;
    line-height: 1;
}