/* Global Styles */
:root {
    /* Modern Color Palette */
    --primary-color: #2563eb; /* Deeper blue primary color */
    --secondary-color: #06b6d4; /* Modern cyan accent */
    --light-color: #f0f4f8; /* Darker light bg color */
    --light-color-darker: #e2e8f0; /* Even darker light bg color */
    --dark-color: #1e293b; /* Darker text color */
    --gray-color: #64748b;
    --gray-light: #cbd5e1;
    --border-color: rgba(37, 99, 235, 0.1); /* Subtle blue border */
    
    /* Modern Shadows */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 6px 10px rgba(0, 0, 0, 0.02);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Modern Gradients */
    --gradient-bg: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-light: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    
    /* Other Variables */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 10px;
    --border-radius-sm: 6px;
    --border-radius-lg: 16px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

h2:after {
    content: '';
    display: block;
    height: 4px;
    width: 60px;
    background: var(--gradient-bg);
    margin: var(--spacing-md) auto 0;
    border-radius: var(--border-radius-sm);
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    color: var(--gray-color);
}

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

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: var(--gradient-bg);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
    overflow: hidden;
    backface-visibility: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: left 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.btn:hover::before {
    left: 0;
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

.btn.pulse {
    animation: pulse 2s infinite;
}

.btn-secondary {
    background-image: linear-gradient(135deg, var(--secondary-color), #00a396);
}

.btn-secondary:before {
    background-image: var(--gradient-bg);
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-50 {
    margin-top: 50px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(58, 123, 213, 0.08);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    overflow: hidden;
}

.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.header-particles::before,
.header-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.1;
    filter: blur(1px);
    animation: floatParticle 15s infinite linear;
}

.header-particles::before {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    animation-duration: 25s;
    animation-delay: 2s;
}

.header-particles::after {
    bottom: 30%;
    right: 20%;
    width: 6px;
    height: 6px;
    animation-duration: 18s;
}

.header::before,
.header::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.07;
    filter: blur(1px);
    z-index: -1;
    animation: floatParticle 20s infinite linear;
}

.header::before {
    top: 60%;
    left: 40%;
}

.header::after {
    top: 20%;
    right: 30%;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, 50px);
    }
    50% {
        transform: translate(50px, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.header.scrolled {
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-image: var(--gradient-bg);
    transition: var(--transition);
    opacity: 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--light-color-darker);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(58, 123, 213, 0.08) 0%, transparent 400px),
        radial-gradient(circle at 80% 50%, rgba(0, 210, 194, 0.08) 0%, transparent 800px);
    display: flex;
    align-items: center;
    text-align: left;
    margin-top: 0;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg, 
        rgba(58, 123, 213, 0.01) 0%, 
        rgba(0, 210, 194, 0.01) 25%, 
        rgba(58, 123, 213, 0.01) 50%, 
        rgba(0, 210, 194, 0.01) 75%, 
        rgba(58, 123, 213, 0.01) 100%
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: 0;
    transform: rotate(30deg);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(58, 123, 213, 0.03) 0%, transparent 300px),
        radial-gradient(circle at 90% 90%, rgba(0, 210, 194, 0.03) 0%, transparent 300px),
        radial-gradient(circle at 90% 10%, rgba(58, 123, 213, 0.03) 0%, transparent 300px),
        radial-gradient(circle at 10% 90%, rgba(0, 210, 194, 0.03) 0%, transparent 300px);
    z-index: 0;
    opacity: 0.8;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    line-height: 1.6;
}

.hero .btns {
    display: flex;
    gap: 20px;
}

/* About Section */
.about {
    background-color: var(--light-color); /* Darker light bg color */
    background-image: 
        linear-gradient(120deg, rgba(240, 244, 248, 0.8) 0%, rgba(226, 232, 240, 0.8) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a7bd5' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Value Proposition */
.value-props {
    background-color: var(--light-color-darker);
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-light);
    position: relative;
}

.faq-item:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-3px);
}

.faq-question {
    padding: var(--spacing-xl) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    background: linear-gradient(to right, rgba(249, 250, 251, 0.5), white);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
    padding-right: var(--spacing-xl);
    transition: color 0.2s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background-color: var(--gray-light);
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 var(--spacing-xl);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray-color);
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: white;
    background-color: var(--primary-color);
}

.faq-item.active {
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--hover-shadow);
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: var(--gradient-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active::after {
    opacity: 1;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    position: relative;
    background-color: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(240, 244, 248, 0.8), rgba(255, 255, 255, 0.9));
    z-index: -1;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: var(--gradient-bg);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(37, 99, 235, 0.15);
}

.value-card:hover::before {
    height: 100%;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-card p {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.card-image {
    margin: auto -30px -30px -30px;
    height: 200px;
    overflow: hidden;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    margin-top: auto;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Workflow Comparison Section */
.workflow-comparison {
    background-color: var(--light-color-darker);
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-3xl);
}

.workflow-comparison::before,
.workflow-comparison::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
}

.workflow-comparison::before {
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: breathe 10s infinite alternate ease-in-out;
}

.workflow-comparison::after {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: breathe 13s infinite alternate-reverse ease-in-out;
}

@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.section-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    font-size: 1.2rem;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.6;
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--gray-light);
    position: relative;
    z-index: 1;
}

.comparison-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.comparison-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    border-radius: var(--border-radius-lg);
    background-image: var(--gradient-light);
    transition: opacity 0.4s ease;
}

.comparison-item:hover::after {
    opacity: 1;
}

.comparison-header {
    background-image: var(--gradient-bg);
    color: white;
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.comparison-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.comparison-item:hover .comparison-header::before {
    transform: translateX(100%);
}

.comparison-icon {
    font-size: 1.8rem;
    background-color: rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.comparison-item:hover .comparison-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.3);
}

.comparison-header h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background-image: linear-gradient(to bottom, rgba(240, 244, 248, 0.7), rgba(255, 255, 255, 0.9));
}

.typical-agent, .team-provides {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.typical-agent {
    background-color: rgba(255, 99, 71, 0.05);
    border-left: 4px solid rgba(255, 99, 71, 0.5);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.05);
}

.team-provides {
    background-color: rgba(46, 204, 113, 0.05);
    border-left: 4px solid rgba(46, 204, 113, 0.5);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.05);
}

.comparison-item:hover .typical-agent,
.comparison-item:hover .team-provides {
    transform: translateY(-4px);
}

.comparison-item:hover .typical-agent {
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.comparison-item:hover .team-provides {
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
}

.comparison-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.typical-agent h4 {
    color: #e74c3c;
}

.team-provides h4 {
    color: #27ae60;
}

.comparison-content h4 i {
    font-size: 1.2rem;
}

.comparison-content ul {
    padding-left: 25px;
    margin-bottom: 0;
}

.comparison-content li {
    margin-bottom: 10px;
    position: relative;
    color: var(--gray-color);
    transition: transform 0.2s ease;
}

.comparison-content li:hover {
    transform: translateX(3px);
    color: var(--dark-color);
}

.typical-agent li::marker {
    color: #e74c3c;
}

.team-provides li::marker {
    color: #27ae60;
}

.workflow-comparison .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.workflow-comparison .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    z-index: -1;
}

.workflow-comparison .btn:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .comparison-content {
        grid-template-columns: 1fr;
    }
    
    .typical-agent, .team-provides {
        padding: var(--spacing-md);
    }
    
    .team-provides {
        margin-top: var(--spacing-md);
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color); /* Darker light bg color */
    position: relative;
    overflow: hidden;
}

.testimonials::before, .testimonials::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 123, 213, 0.03) 0%, rgba(58, 123, 213, 0) 70%);
    z-index: 0;
}

.testimonials::before {
    top: -150px;
    left: -150px;
}

.testimonials::after {
    bottom: -150px;
    right: -150px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition);
    border-top: 5px solid transparent;
    overflow: hidden;
    background-image: linear-gradient(to bottom, rgba(240, 244, 248, 0.6), rgba(255, 255, 255, 0.9));
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-top: 5px solid var(--secondary-color);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
}

/* Contact Section */
.contact {
    background-color: var(--light-color-darker);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

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

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--gray-light);
    background-image: linear-gradient(135deg, rgba(240, 244, 248, 0.6), rgba(255, 255, 255, 0.9));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-3px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--light-color); /* Darker form background */
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(58, 123, 213, 0.1);
}

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

.booking-btn-container {
    margin-top: 30px;
}



.alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background-image: var(--gradient-bg);
    color: white;
    padding: 50px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    opacity: 0.3;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover:before {
    transform: scale(1);
}

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

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

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.zoomIn {
    animation-name: zoomIn;
}

.pulse {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.float {
    animation-name: float;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.rotateIn {
    animation-name: rotateIn;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .btns {
        justify-content: center;
    }
    
    .value-card, .testimonial-card {
        padding: 20px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: var(--gradient-bg);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px) scale(0.9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(58, 123, 213, 0.25);
}

.scroll-to-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.scroll-to-top:hover:before {
    transform: scale(1);
}

.scroll-to-top i {
    animation: float 2s infinite ease-in-out;
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .hero .btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
