/* ReservationsOS.com - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #4285f4;
    --accent-color: #ea4335;
    --light-color: #f8f9fa;
    --dark-color: #202124;
    --text-color: #3c4043;
    --text-light: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-accent {
    background-color: var(--accent-color);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: var(--primary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section */
/* Hero Section Updates */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.svg');
    opacity: 0.1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    animation: fadeInLeft 1.2s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInRight 1.2s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Travel Animation Styles */
.hero-animation {
    position: relative;
    height: 500px;
    z-index: 1;
}

.travel-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Airplane Animation */
.airplane {
    position: absolute;
    top: 20%;
    left: -50px;
    font-size: 2rem;
    color: #fff;
    animation: flyAcross 8s linear infinite;
    z-index: 3;
}

.flight-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: pathGlow 8s linear infinite;
    transform: translateY(-50%);
}

@keyframes flyAcross {
    0% {
        transform: translateX(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(600px) rotate(5deg);
        opacity: 0;
    }
}

@keyframes pathGlow {
    0% {
        opacity: 0;
        transform: translateX(-200px) translateY(-50%);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(400px) translateY(-50%);
    }
}

/* Destination Markers */
.destination {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    animation: floatDestination 3s ease-in-out infinite;
}

.destination-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.destination-2 {
    top: 40%;
    right: 5%;
    animation-delay: 1s;
}

.destination-3 {
    top: 65%;
    right: 25%;
    animation-delay: 2s;
}

.destination i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@keyframes floatDestination {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Booking Card Animation */
.booking-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    animation: slideInBooking 2s ease-out 1s both;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.card-header i {
    color: var(--secondary-color);
}

.booking-details {
    margin-bottom: 1rem;
}

.detail-line {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    animation: fillProgress 1s ease-out infinite alternate;
}

.detail-line.short {
    width: 60%;
}

.detail-line:nth-child(1) {
    animation-delay: 0.2s;
}

.detail-line:nth-child(2) {
    animation-delay: 0.4s;
}

.detail-line:nth-child(3) {
    animation-delay: 0.6s;
}

.book-btn {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes slideInBooking {
    from {
        transform: translateY(-50%) translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

@keyframes fillProgress {
    from {
        background: #e0e0e0;
    }
    to {
        background: var(--secondary-color);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    left: 40%;
    animation-delay: 1s;
}

.icon-3 {
    top: 75%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    top: 80%;
    left: 45%;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 1;
    }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: drawLine 3s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 30%;
    width: 2px;
    height: 80px;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 2px;
    animation-delay: 1s;
}

.line-3 {
    top: 70%;
    left: 35%;
    width: 2px;
    height: 60px;
    animation-delay: 2s;
}

@keyframes drawLine {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments for hero animation */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-animation {
        height: 300px;
        order: -1;
    }

    .airplane {
        font-size: 1.5rem;
    }

    .booking-card {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        min-width: 150px;
        padding: 1rem;
    }

    .destination {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-animation {
        height: 250px;
    }

    .floating-icon {
        font-size: 1.2rem;
    }

    .booking-card {
        min-width: 120px;
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-animation {
        height: 200px;
    }

    .airplane {
        font-size: 1.2rem;
    }

    .destination {
        display: none;
    }

    .floating-icon {
        font-size: 1rem;
    }
}

/* Hero heading styles already defined above */

/* Hero paragraph styles already defined above */

/* Hero buttons styles already defined above */


/* CRM Solution Animation Styles */
.crm-solution-animation {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Central CRM Hub */
.crm-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: hubPulse 3s ease-in-out infinite;
    z-index: 10;
}

.hub-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: rotate 8s linear infinite;
}

.hub-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.pulse-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Integration Partners */
.integration-partner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInScale 1s ease-out both;
}

.partner-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0.5s;
}

.partner-2 {
    top: 15%;
    right: 15%;
    animation-delay: 0.7s;
}

.partner-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 0.9s;
}

.partner-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.partner-icon.expedia {
    background: linear-gradient(135deg, #003580, #0057b8);
    animation-delay: 0.2s;
}

.partner-icon.tourplan {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation-delay: 0.4s;
}

.partner-icon.providers {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    animation-delay: 0.6s;
}

.partner-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* Data Flow Lines */
.data-flow {
    position: absolute;
    background: linear-gradient(90deg, var(--secondary-color), transparent, var(--secondary-color));
    opacity: 0;
    animation: dataTransfer 2s ease-in-out infinite;
}

.flow-1 {
    top: 30px;
    left: 60px;
    width: 120px;
    height: 3px;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.flow-2 {
    top: 30px;
    right: 60px;
    width: 120px;
    height: 3px;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

.flow-3 {
    bottom: 75px;
    left: 60px;
    width: 120px;
    height: 3px;
    transform: rotate(-25deg);
    animation-delay: 2s;
}

@keyframes dataTransfer {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0) rotate(var(--rotation, 0deg));
    }
    50% {
        opacity: 1;
        transform: scaleX(1) rotate(var(--rotation, 0deg));
    }
}

/* Feature Nodes */
.feature-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideInFeature 1s ease-out both;
}

.customer-node {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.1s;
}

.analytics-node {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 1.3s;
}

.mobile-node {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
    animation: nodePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.node-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
}

.feature-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    animation: indicatorBlink 2s ease-in-out infinite;
}

@keyframes slideInFeature {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
    }
}

@keyframes indicatorBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0.5s;
}

.particle-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.particle-3 {
    top: 80%;
    left: 40%;
    animation-delay: 1.5s;
}

.particle-4 {
    top: 40%;
    left: 20%;
    animation-delay: 2s;
}

.particle-5 {
    top: 30%;
    left: 80%;
    animation-delay: 2.5s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-30px) scale(0.8);
    }
    75% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* Success Indicators */
.success-indicator {
    position: absolute;
    font-size: 1.2rem;
    color: #28a745;
    opacity: 0;
    animation: successPop 3s ease-in-out infinite;
}

.indicator-1 {
    top: 25%;
    left: 50%;
    animation-delay: 2s;
}

.indicator-2 {
    top: 60%;
    left: 60%;
    animation-delay: 2.5s;
}

.indicator-3 {
    top: 70%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes successPop {
    0%, 90%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    5%, 85% {
        opacity: 1;
        transform: scale(1.2);
    }
    45% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Responsive adjustments for CRM animation */
@media (max-width: 992px) {
    .crm-solution-animation {
        height: 350px;
    }

    .crm-hub {
        width: 100px;
        height: 100px;
    }

    .hub-icon {
        font-size: 1.5rem;
    }

    .hub-label {
        font-size: 0.6rem;
    }

    .partner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .partner-label,
    .node-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .crm-solution-animation {
        height: 300px;
    }

    .crm-hub {
        width: 80px;
        height: 80px;
    }

    .hub-icon {
        font-size: 1.2rem;
    }

    .hub-label {
        font-size: 0.5rem;
    }

    .partner-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .node-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .partner-label,
    .node-label {
        font-size: 0.6rem;
    }

    .data-flow {
        height: 2px;
    }
}

@media (max-width: 576px) {
    .crm-solution-animation {
        height: 250px;
    }

    .partner-label,
    .node-label {
        display: none;
    }

    .data-particle {
        width: 6px;
        height: 6px;
    }

    .success-indicator {
        font-size: 1rem;
    }
}




/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease-out;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.pricing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cta {
    margin-top: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    animation: fadeInLeft 1s ease-out;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.contact-form {
    animation: fadeInRight 1s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    transition: border-color var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Form validation and messages */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-control.error {
    border-color: #dc3545;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.recaptcha-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #aaa;
    transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    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 fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Animation classes for elements with animate-on-scroll */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Section title animations */
.section-title.animate-on-scroll {
    opacity: 1;
}

.section-title.animate-on-scroll h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.animate-on-scroll p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.section-title.animated h2 {
    opacity: 1;
    transform: translateY(0);
}

.section-title.animated p {
    opacity: 1;
    transform: translateY(0);
}

.section-title.animated h2::after {
    width: 0;
    transition: width 1s ease 0.5s;
    animation: expandWidth 1s ease 0.5s forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Apply different animations based on element type */
.feature-card.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1).animated {
    animation-name: fadeInLeft;
    animation-delay: 0.1s;
}

.feature-card:nth-child(2).animated {
    animation-name: fadeInRight;
    animation-delay: 0.2s;
}

.feature-card:nth-child(3).animated {
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.feature-card:nth-child(4).animated {
    animation-name: fadeInRight;
    animation-delay: 0.4s;
}

.feature-card:nth-child(5).animated {
    animation-name: fadeInLeft;
    animation-delay: 0.5s;
}

.feature-card:nth-child(6).animated {
    animation-name: fadeInRight;
    animation-delay: 0.6s;
}

.feature-icon.animated {
    animation: fadeInRotate 0.8s ease forwards;
    animation-delay: 0.2s;
}

.feature-card:nth-child(odd) .feature-icon.animated {
    animation-name: fadeInScale;
}

.feature-card:hover .feature-icon {
    animation: bounce 1s ease infinite;
    animation-delay: 0.1s;
}

.about-text.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.about-image.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.pricing-content.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.pricing-content.animated h3 {
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.pricing-content.animated p {
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.4s;
}

.pricing-cta.animated {
    animation: fadeInScale 0.8s ease forwards;
    animation-delay: 0.6s;
}

.pricing-cta.animated h4 {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.pricing-cta.animated .btn {
    animation: bounce 1s ease;
    animation-delay: 1s;
}

.contact-info.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.contact-info-item.animated {
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--i, 1));
    opacity: 0;
}

.contact-info-item:nth-child(1) {
    --i: 1;
}

.contact-info-item:nth-child(2) {
    --i: 2;
}

.contact-info-item:nth-child(3) {
    --i: 3;
}

.contact-form.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.contact-form.animated .form-group {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--i, 1));
    opacity: 0;
}

.contact-form .form-group:nth-child(1) {
    --i: 1;
}

.contact-form .form-group:nth-child(2) {
    --i: 2;
}

.contact-form .form-group:nth-child(3) {
    --i: 3;
}

.contact-form .form-group:nth-child(4) {
    --i: 4;
}

.contact-form.animated .btn {
    animation: fadeInScale 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 6rem 0 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Page Content */
.page-content {
    padding: 3rem 0 5rem;
}

.content-wrapper {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.content-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-section h4 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

.content-section ul ul {
    margin-top: 0.5rem;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th, 
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-text {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 500;
}

.btn-text:hover {
    color: var(--accent-color);
}

.cookie-accept {
    padding: 8px 16px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
}

/* Email Protection Styles */
.obfuscated-email {
    display: inline-flex;
    flex-wrap: wrap;
}

.obfuscated-email span {
    order: 10;
}

.obfuscated-email span[data-position="1"] {
    order: 1;
}

.obfuscated-email span[data-position="2"] {
    order: 2;
}

.obfuscated-email span[data-position="3"] {
    order: 3;
}

.obfuscated-email span[data-position="4"] {
    order: 4;
}

.obfuscated-email span[data-position="5"] {
    order: 5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-speed) ease;
        z-index: 999;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul li {
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}
