/* Global Styles */
:root {
    --wrapper-max-width: 1600px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height);
    font-family: var(--font-family);
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: var(--wrapper-max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    width: 100%;
}

/* Header Styles */
header {
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    transition: all var(--transition-base);
    height: var(--header-height);
}

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

header.scrolled {
    height: calc(var(--header-height) - 10px);
    background-color: var(--bg-transparent);
    backdrop-filter: blur(10px);
}

/* Right Header Section */
.right-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--main-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

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

.logo a {
    text-decoration: none;
    transition: transform var(--transition-base);
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.logo-text .highlight {
    color: var(--main-color);
    position: relative;
}

.logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-right);
    border-radius: 2px;
}

.logo a:hover .logo-text .highlight::after {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

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

/* Navigation */
nav {
    transition: transform var(--transition-base), opacity var(--transition-base);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--fw-medium);
    font-size: 14px;
    transition: color var(--transition-fast);
    padding: var(--space-xs) var(--space-sm);
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--accent-primary);
}


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

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Button Styles */
.btn {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-medium);
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    border: none;
    /* outline: auto; */
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.icon-btn:hover {
    box-shadow: var(--shadow-accent);
    background-color: var(--main-color);
    color: white;
}

/* Contact Button */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-right);
    color: var(--main-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border: 1px solid var(--main-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.contact-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-btn span {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    color: var(--white);
    border-color: var(--main-color);
    background-color: var(--main-color);
    box-shadow: 0 6px 15px rgba(254, 91, 61, 0.2);
}

.contact-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-btn:hover i {
    transform: rotate(-15deg);
}

@media (max-width: 768px) {
    .contact-btn span {
        display: none;
    }
    
    .contact-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 6px;
    }
    
    .contact-btn:hover i {
        transform: rotate(-15deg) scale(1.2);
    }
}

.ContactUs-btn {
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.ContactUs-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--header-height));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--light-bg);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 550px;
    padding-right: 20px;
    animation: fadeInUp 1s ease;
}

/* Title Effects */
h1, h2, h3, h4 {
    position: relative;
}

/* Main Hero Title Effect */
.hero-text h1 {
    font-size: 4rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-text h1 span {
    color: var(--main-color);
    position: relative;
    display: inline-block;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-right);
    border-radius: 2px;
    animation: pulse 1.5s infinite;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: var(--space-xl);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    box-shadow: var(--shadow-accent);
    border: auto;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: var(--shadow-accent-hover);
}

.btn-outline {
    border: 2px solid var(--main-color);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--main-color);
    color: White;
}

.hero-image-container {
    position: relative;
    width: 50%;
    height: calc(100vh - var(--header-height));
}

.orange-background {
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 125%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
    animation: fadeIn 1.2s ease;
    transform: translateX(5%);
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        padding-top: var(--space-xxl);
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        margin-top: var(--space-xxl);
        padding-bottom: var(--space-xxl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 100%;
        height: 50vh;
        margin-top: var(--space-xl);
    }
    
    .orange-background {
        border-radius: 20px 20px 0 0;
    }
    
    .hero-image img {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.6rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h1 span::after {
        height: 3px;
        bottom: 3px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header h2::after {
        width: 60px;
    }
    
    .section-header h4::before,
    .section-header h4::after {
        width: 20px;
    }
    
    .step-item h3 {
        font-size: 20px;
    }
    
    .mobile-toggle {
        display: block;
        margin-left: var(--space-md);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        z-index: 1000;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
        width: 100%;
    }
    
    nav li {
        justify-content: center;
    }
    
    nav a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-image-container {
        height: 40vh;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h1 span::after {
        height: 2px;
        bottom: 2px;
    }
    
    .section-header h4 {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .section-header h4::before,
    .section-header h4::after {
        width: 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
        padding-bottom: 12px;
    }
    
    .section-header h2::after {
        width: 50px;
        height: 2px;
    }
    
    .step-item h3 {
        font-size: 18px;
    }
    
    .vehicle-card h3::before {
        display: none;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-image-container {
        height: 35vh;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    min-height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Section Headers Effect */
.section-header h4 {
    color: var(--main-color);
    font-size: 16px;
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.section-header h4::before,
.section-header h4::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-right);
    transform: translateY(-50%);
}

.section-header h4::before {
    left: -20px;
}

.section-header h4::after {
    right: -20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: var(--fw-bold);
    color: var(--text-color);
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 250px;
    border: 1px solid var(--main-color);
    transition: transform var(--transition-base);
}

.step-item:hover {
    transform: translateY(-5px);
}

/* Step Items Title Effect */
.step-item h3 {
    font-size: 22px;
    font-weight: var(--fw-semibold);
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.step-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0.5);
    width: 40px;
    height: 2px;
    background: var(--main-color);
    transition: transform 0.3s ease, width 0.3s ease;
}

.step-item:hover h3 {
    color: var(--main-color);
}

.step-item:hover h3::after {
    transform: translateX(-50%) scaleX(1);
    width: 60px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--main-color);
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 36px;
    color: White;
}

.step-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Styles for How It Works */
@media (max-width: 992px) {
    .steps-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .step-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
    }
}

/* Popular Vehicles Section */
.popular-vehicles {
    padding: 60px 0;
}

.popular-vehicles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

.vehicle-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vehicle-img {
    height: 200px;
    overflow: hidden;
    background: var(--gradient-top-right);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.vehicle-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.vehicle-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(254,91,61,0.15), rgba(255,172,56,0.10), transparent);
    z-index: 1;
    pointer-events: none;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.05);
}

/* Vehicle Card Title Effect */
.vehicle-card h3 {
    font-size: 1.4rem;
    padding: 15px 15px 5px;
    color: var(--text-color);
    position: relative;
    transition: color 0.3s ease;
}

.vehicle-card:hover h3 {
    color: var(--main-color);
}

.vehicle-card h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: var(--gradient-right);
    transition: width 0.3s ease;
}

.vehicle-card:hover h3::before {
    width: 40px;
}

.vehicle-price {
    padding: 0 15px 15px;
    color: var(--text-gray);
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

.vehicle-price span {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.vehicle-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--main-color);
    margin-right: 8px;
    font-size: 1rem;
}

.feature span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.vehicle-buttons {
    display: flex;
    padding: 15px;
    gap: 10px;
}

.view-btn {
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.view-btn:hover {
    background-color: var(--main-color);
    color: white;
}

.book-btn {
    background-color: var(--main-color);
    color: white;
}

.book-btn:hover {
    background-color: var(--second-color);
}

/* View All Vehicles Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.view-all-wrapper .btn {
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(254, 91, 61, 0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.view-all-wrapper .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-right);
    z-index: -1;
    transition: width 0.4s ease;
}

.view-all-wrapper .btn:hover {
    color: white;
    background-color: var(--main-color);
}

.view-all-wrapper .btn:hover:before {
    width: 100%;
}

.view-all-wrapper .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.view-all-wrapper .btn:hover i {
    transform: translateX(5px);
}

/* Responsive styles for vehicle section */
@media (max-width: 992px) {
    .vehicles-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .vehicles-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 576px) {
    .section-description {
        font-size: 16px;
    }
    
    .vehicles-container {
        grid-template-columns: 1fr;
        /* max-width: 350px; */
        margin-left: auto;
        margin-right: auto;
    }

    .view-all-wrapper .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg) 0%, rgba(238, 239, 241, 0) 100%);
}

.testimonials-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg) 0%, rgba(238, 239, 241, 0) 100%);
}

.testimonials-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    width: max-content;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.row-1 {
    animation-name: scroll-left;
}

.row-2 {
    animation-name: scroll-right;
    animation-delay: -20s;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-100% + 100vw));
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 100px;
    color: rgba(254, 91, 61, 0.05);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.testimonial-rating {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: var(--second-color);
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    flex: 1;
    overflow: hidden;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 3px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.author-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-right);
    transition: width var(--transition-base);
}

.testimonial-card:hover .author-info h4::after {
    width: 100%;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonials-wrapper.paused .testimonials-row {
    animation-play-state: paused;
}

/* Separate pause for each row */
.testimonials-row.paused {
    animation-play-state: paused;
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        height: 400px;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px;
        height: 420px;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 70px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 20px;
        height: 450px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 50px;
    }
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

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

.about-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-base);
}

.image-container:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: var(--gradient-right);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-accent);
    padding: 10px;
    z-index: 2;
}

.experience-badge .years {
    font-size: 36px;
    font-weight: var(--fw-bold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: var(--fw-medium);
    line-height: 1.2;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    font-weight: var(--fw-semibold);
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-text > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--main-color);
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 5px;
    color: var(--text-color);
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsive styles for About section */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .years {
        font-size: 30px;
    }
    
    .experience-badge .text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-text h3 {
        font-size: 22px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        right: 20px;
        bottom: -15px;
    }
    
    .experience-badge .years {
        font-size: 24px;
    }
    
    .experience-badge .text {
        font-size: 10px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--bg-secondary);
    padding: var(--space-xxxl) 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.advantage-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xxl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.advantage-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-right);
    z-index: -1;
    transition: height 0.3s ease;
    opacity: 0.8;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

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

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

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    background-color: var(--white);
    box-shadow: var(--shadow-accent);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    font-weight: var(--fw-semibold);
    position: relative;
    z-index: 1;
}

.advantage-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.cta-container {
    text-align: center;
    margin-top: var(--space-xxxl);
    padding: var(--space-xxl) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-container h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    font-weight: var(--fw-semibold);
}

.cta-container .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: var(--space-lg);
    }
    
    .cta-container {
        margin-top: var(--space-xxl);
        padding: var(--space-xl) 0;
    }
    
    .cta-container h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        padding: var(--space-xl);
    }
    
    .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }
    
    .advantage-card h3 {
        font-size: 1.1rem;
        margin-bottom: var(--space-sm);
    }
    
    .advantage-card p {
        font-size: 0.9rem;
    }
    
    .cta-container h3 {
        font-size: 1.1rem;
    }
}

/* Working Hours Section */
.working-hours {
    background-color: var(--bg-primary);
    padding: var(--space-xxxl) 0;
}

.hours-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

/* Status Card */
.hours-status-card {
    background: var(--gradient-top-right);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-accent);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.status-text {
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
}

.status-time {
    font-weight: var(--fw-medium);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Main Content */
.hours-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.hours-column {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: var(--space-lg);
}

.hours-column h3 {
    font-size: 1.3rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    color: var(--text-primary);
}

.hours-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-right);
    border-radius: 2px;
}

/* Schedule Grid */
.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.schedule-day {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.schedule-day:last-child {
    border-bottom: none;
}

.schedule-day:hover {
    background-color: rgba(254, 91, 61, 0.05);
    border-radius: var(--radius-md);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.day-name {
    font-weight: var(--fw-medium);
    color: var(--text-primary);
}

.day-status {
    background-color: #e6f7e7;
    color: #2e7d32;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: var(--fw-semibold);
}

.time-range {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Highlight current day */
.schedule-day.is-today {
    background-color: rgba(254, 91, 61, 0.05);
    border-radius: var(--radius-md);
    position: relative;
}

.schedule-day.is-today::before {
    content: 'Today';
    position: absolute;
    right: var(--space-lg);
    top: -8px;
    background-color: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: var(--fw-semibold);
}

.schedule-day.is-today .day-name {
    color: var(--accent-primary);
    font-weight: var(--fw-semibold);
}

.schedule-day.is-today .time-range {
    font-weight: var(--fw-semibold);
}

/* Contact Card */
.contact-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
}

.contact-method .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1rem;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: var(--fw-medium);
    background-color: rgba(254, 91, 61, 0.1);
    color: var(--accent-primary);
}

.text-link {
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-base);
}

.text-link:hover {
    color: var(--accent-dark);
    gap: 6px;
}

.text-link i {
    font-size: 0.7rem;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    background: var(--accent-primary);
    color: white;
    display: inline-block;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-sm:hover {
    background: var(--accent-dark);
}

/* Contact Info Column with Gradient Background */
.hours-column.contact-info {
    position: relative;
    padding-bottom: 180px;
    overflow: hidden;
}

.hours-column.contact-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--gradient-top-right);
    border-radius: var(--radius-lg);
    z-index: -1;
    box-shadow: var(--shadow-accent);
}

.hours-column.contact-info::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
}

/* Additional decorative elements */
.contact-card::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: 90px;
    left: 60px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.hours-column.contact-info .decorative-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
    transform: rotate(-15deg);
    z-index: 0;
}

/* CTA Banner */
.hours-cta-banner {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--accent-primary);
}

.cta-content h3 {
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 5px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
}

/* Media Queries */
@media (max-width: 992px) {
    .hours-main-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hours-column.contact-info {
        padding-bottom: 140px;
    }
    
    .hours-column.contact-info::after {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hours-status-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hours-column.contact-info {
        padding-bottom: 120px;
    }
    
    .hours-column.contact-info::after {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .status-text {
        font-size: 1rem;
    }
    
    .schedule-day {
        padding: var(--space-md) var(--space-sm);
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .schedule-day.is-today::before {
        right: var(--space-sm);
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: var(--space-xs);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .hours-column.contact-info {
        padding-bottom: 100px;
    }
    
    .hours-column.contact-info::after {
        height: 80px;
    }
    
    .hours-column.contact-info::before {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .contact-card {
        padding: var(--space-md);
    }
    
    .schedule-grid {
        padding: var(--space-md);
    }
    
    .hours-status-card {
        padding: var(--space-md);
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--bg-secondary);
    padding: var(--space-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-right);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xxl);
    margin-top: var(--space-xxl);
}

/* Form Column */
.form-column {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xxl);
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-wrapper.full-width {
    grid-column: 1 / -1;
}

.input-wrapper label {
    font-size: 0.85rem;
    font-weight: var(--fw-medium);
    color: var(--text-primary);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    padding: 12px 16px;
    padding-left: 40px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    transition: all var(--transition-base);
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-wrapper textarea {
    resize: none;
}

/* Form validation styles */
.input-wrapper.error input,
.input-wrapper.error select,
.input-wrapper.error textarea {
    border-color: #F44336;
    background-color: rgba(244, 67, 54, 0.03);
}

.input-wrapper.error .input-icon {
    color: #F44336;
}

.validation-message {
    font-size: 0.75rem;
    color: #F44336;
    margin-top: 2px;
    display: block;
    font-weight: var(--fw-medium);
    min-height: 16px;
}

/* Focus states */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(254, 91, 61, 0.1);
}

/* Success message styles */
.success-message {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xxl);
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: var(--space-lg);
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 80%;
    margin: 0 auto;
}

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

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 38px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    pointer-events: none;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

.checkbox-wrapper label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.checkbox-wrapper a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.checkbox-wrapper a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.form-footer .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.form-footer .btn i {
    font-size: 0.8rem;
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.info-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    color: var(--text-primary);
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-right);
    border-radius: 2px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.info-item {
    display: flex;
    gap: var(--space-md);
}

.info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.info-item:hover .info-icon {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-accent);
}

.info-text h4 {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

.info-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cta-box {
    margin-top: auto;
    background: var(--gradient-top-right);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    color: white;
    text-align: center;
}

.cta-box h4 {
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
}

.cta-box p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .form-group {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .form-footer {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
    
    .form-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-column,
    .info-card {
        padding: var(--space-lg);
    }
    
    .info-list {
        gap: var(--space-md);
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 10px 12px;
        padding-left: 35px;
        font-size: 0.85rem;
    }
    
    .input-icon {
        left: 12px;
        top: 36px;
        font-size: 0.8rem;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .info-icon {
        margin-bottom: 5px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1D1A1F;
    color: #fff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-right);
}

/* Footer Top */
.footer-top {
    padding: var(--space-xxl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-xxl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.about-column {
    padding-right: var(--space-xl);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo a {
    text-decoration: none;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo .highlight {
    color: var(--main-color);
    position: relative;
}

.footer-logo .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-right);
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-right);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    color: white;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-right);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links li {
    position: relative;
    padding-left: var(--space-md);
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    transition: all var(--transition-base);
}

.footer-links li:hover::before {
    background-color: white;
    transform: translateY(-50%) scale(1.2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: var(--space-xs);
}

/* Contact List */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-list li {
    display: flex;
    gap: var(--space-md);
}

.contact-list i {
    color: var(--accent-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.contact-list span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Middle - Newsletter */
.footer-middle {
    padding: var(--space-xl) 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
}

.newsletter-content h3 {
    font-size: 1.3rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: white;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 400px;
}

.newsletter-form .form-group {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    padding: 0 var(--space-md);
    height: 46px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.9rem;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all var(--transition-base);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    height: 46px;
    padding: 0 var(--space-xl);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-lg) 0;
    background-color: rgba(0, 0, 0, 0.3);
}

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

.copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl) var(--space-xxl);
    }
    
    .footer-column {
        margin-bottom: var(--space-lg);
    }
    
    .newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .newsletter-form .form-group {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
        min-width: unset;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-column {
        padding-right: 0;
    }
    
    .footer-column {
        margin-bottom: 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

.newsletter-form input.shake-error {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: #F44336;
    background-color: rgba(244, 67, 54, 0.1);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}
