/* =============================================
   COMPUTER REPAIR LANDING PAGE - STYLE.CSS
   Color scheme: Green (inspired by VN4U.VN)
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Green */
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --primary-lighter: #81c784;
    
    /* Secondary Colors */
    --secondary: #ff9800;
    --secondary-dark: #f57c00;
    --secondary-light: #ffb74d;
    
    /* Accent */
    --accent: #00bcd4;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --dark: #1a1a2e;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    --gradient-hero: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    --gradient-cta: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 8px 30px rgba(46, 125, 50, 0.3);
    
    /* Typography */
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    /*font-family: var(--font-secondary);*/
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    /*font-family: var(--font-primary);*/
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

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

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

/* Utility Classes */
.text-primary {
    color: var(--primary) !important;
}

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



/* Section Styles */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-header.text-center .section-subtitle {
    padding-left: 0;
}

.section-header.text-center .section-subtitle::before {
    display: none;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 120px 0 150px;
    overflow: hidden;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .text-highlight {
    color: var(--secondary);
}

.hero-title .text-highlight::after {
    background: rgba(255, 152, 0, 0.4);
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-description strong {
    color: var(--secondary);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
}

.hero-feature-item i {
    color: var(--secondary);
    font-size: 18px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    transition: var(--transition-normal);
}

.btn-cta-primary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    border: 2px solid var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.trust-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 110%;
    height: 110%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 4s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 95%;
    height: 95%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 4s ease-in-out infinite reverse;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%       { transform: scale(1.04); opacity: 1; }
}

@keyframes float-particle {
    0%   { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    50%  { transform: translateY(-20px) translateX(10px); opacity: 1; }
    100% { transform: translateY(-35px) translateX(-8px); opacity: 0.4; }
}

.hero-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.hero-image-badge i {
    font-size: 28px;
    color: var(--primary);
}

.hero-image-badge span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

.hero-wave path {
    fill: var(--white);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.services-section .row > [class*="col-"] {
    display: flex;
    float: none;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    margin-bottom: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-features {
    flex-grow: 1;
}

.service-price {
    margin-top: auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

/* Featured card */
.service-card--featured {
    border-color: var(--primary);
    border-width: 2px;
    position: relative;
    box-shadow: var(--shadow-green);
}

.service-card--featured:hover {
    box-shadow: 0 12px 50px rgba(46, 125, 50, 0.4);
}

.service-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 0;
}

.service-features li i {
    color: var(--primary);
    font-size: 14px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px dashed var(--gray-300);
    margin-top: auto;
}

.price-label {
    font-size: 14px;
    color: var(--gray-500);
}

.price-value {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-us-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.why-us-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.why-us-image {
    position: relative;
    padding: 20px;
}

.why-us-image .main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-green);
}

.exp-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    line-height: 1.4;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.floating-card i {
    font-size: 24px;
    color: var(--primary);
}

.floating-card.card-1 {
    bottom: 80px;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 0;
    left: 40px;
    animation: float 3s ease-in-out infinite 1s;
}

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

.card-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.card-label {
    font-size: 13px;
    color: var(--gray-600);
}

.why-us-content {
    padding-left: 30px;
}

.why-us-features {
    margin-top: 35px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.why-feature-item:hover .feature-icon {
    background: var(--gradient-primary);
}

.why-feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-timeline {
    position: relative;
    margin-top: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 97px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-lighter) 15%, var(--primary) 50%, var(--primary-lighter) 85%, transparent);
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-number {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.process-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.process-icon i {
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.process-item:hover .process-icon {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.process-item:hover .process-icon i {
    color: var(--white);
    transform: rotate(15deg);
}

.process-item:hover .process-number {
    color: var(--secondary);
}

.process-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-desc {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 220px;
    margin: 0 auto;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

/* Feedback image carousel */
.feedback-item {
    padding: 8px;
}

.feedback-img-wrap {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    line-height: 0;
    aspect-ratio: 9 / 16;        
    background: #f5f5f5;         
}

.feedback-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;         
    object-position: top;      
    display: block;
    transition: transform 0.35s ease;
}


.feedback-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feedback-zoom i {
    font-size: 28px;
    color: var(--white);
}

.feedback-img-wrap:hover {
    box-shadow: var(--shadow-lg);
}

.feedback-img-wrap:hover img {
    transform: scale(1.03);
}

.feedback-img-wrap:hover .feedback-zoom {
    opacity: 1;
}

/* Carousel nav arrows */
.testimonials-carousel .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.testimonials-carousel .owl-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: var(--white) !important;
    border: 2px solid var(--gray-200) !important;
    box-shadow: var(--shadow-sm);
    margin: 0 6px;
    transition: var(--transition-normal);
    color: var(--primary) !important;
    font-size: 14px !important;
}

.testimonials-carousel .owl-nav button:hover {
    background: var(--gradient-primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-green);
}

/* Dots */
.testimonials-carousel .owl-dots {
    text-align: center;
    margin-top: 16px;
}

.testimonials-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: var(--transition-normal);
}

.testimonials-carousel .owl-dot.active span {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    padding-right: 30px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-method:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.method-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.method-icon i {
    font-size: 24px;
    color: var(--white);
}

.method-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.method-content a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.method-content a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--dark);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    background: var(--gray-50);
}

.contact-form select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    cursor: pointer;
}

.contact-form select.form-control option[value=""] {
    color: var(--gray-500);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

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

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

.form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.form-check-label {
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
}

.form-check-label i {
    color: var(--secondary);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 16px 35px;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    justify-content: center;
    transition: var(--transition-normal);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
}

.form-note i {
    color: var(--primary);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-cta);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 100px 100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.btn-cta-white:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
}

.cta-feature i {
    color: var(--secondary);
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 99px;
    margin-bottom: 30px;
}

.cta-trust i {
    color: var(--secondary);
    font-size: 14px;
}

.cta-trust strong {
    color: var(--secondary);
    font-size: 17px;
}

@keyframes phone-ring {
    0%   { transform: rotate(0deg); }
    5%   { transform: rotate(15deg); }
    10%  { transform: rotate(-12deg); }
    15%  { transform: rotate(10deg); }
    20%  { transform: rotate(-8deg); }
    25%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.phone-ring {
    display: inline-block;
    animation: phone-ring 3s ease-in-out infinite;
    transform-origin: center center;
}

/* =============================================
   LEFT SIDE NAVIGATION
   ============================================= */
.side-nav {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-nav.visible {
    opacity: 1;
    visibility: visible;
}

.side-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
    min-width: 140px;
}

.side-nav-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
    outline: none;
}

.side-nav-dot:focus,
.side-nav-dot:active {
    outline: none;
    text-decoration: none;
}

.side-nav-dot .dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400, #bdbdbd);
    transition: background 0.2s ease;
}

.side-nav-dot .nav-label {
    font-size: 12px;
    font-weight: 600;
    color: inherit;
}

.side-nav-dot:hover {
    background: var(--primary-lighter);
    color: var(--primary-dark);
}

.side-nav-dot:hover .dot {
    background: var(--primary);
}

.side-nav-dot.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.side-nav-dot.active .dot {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1199px) {
    .side-nav {
        display: none;
    }
}

/* ===== SEO SECTION ===== */
.seo-section {
    background: var(--white);
}

.seo-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.seo-content-preview h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.seo-content-preview h3:first-child {
    margin-top: 0;
}

.seo-content-preview p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.seo-content-full {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.seo-content-full h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.seo-content-full h3:first-child {
    margin-top: 0;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.seo-content-full p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0 0 12px;
}

.seo-content.expanded .seo-content-full {
    max-height: 100%;
    opacity: 1;
    margin-top: 25px;
}

/*.seo-content::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
    transition: var(--transition-base);
}*/

/*.seo-content.expanded::after {
    opacity: 0;
}*/

.seo-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px auto 0;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.seo-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.seo-toggle i {
    transition: var(--transition-base);
}

.seo-toggle.active i {
    transform: rotate(180deg);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 120px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .why-us-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-item {
        margin-bottom: 40px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        padding-left: 0;
    }
    
    .section-subtitle::before {
        display: none;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .why-us-image {
        padding: 30px 20px;
    }
    
    .floating-card.card-1 {
        right: -10px;
        bottom: 60px;
    }
    
    .floating-card.card-2 {
        left: 10px;
        bottom: -10px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 17px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-feature-item {
        font-size: 13px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 25px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .trust-number {
        font-size: 24px;
    }
    
    .trust-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon i {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .why-us-section-left {
        display: none;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animated {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.fadeInUp {
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
}

.animated.fadeInLeft {
    opacity: 1;
    animation: fadeInLeft 0.6s ease forwards;
}

.animated.fadeInRight {
    opacity: 1;
    animation: fadeInRight 0.6s ease forwards;
}

@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);
    }
}

/* =============================================
   PRICING SECTION (Bonus)
   ============================================= */
.pricing-section {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    margin-bottom: 30px;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-green);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-header {
    padding: 35px 30px 25px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.pricing-body {
    padding: 25px 30px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-200);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list .service-name {
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-list .service-price {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.pricing-footer {
    padding: 0 30px 30px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 25px;
    text-align: center;
    background: var(--gray-100);
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.btn-pricing:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-card.featured .btn-pricing {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-card.featured .btn-pricing:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-green);
}

/* CF7 compatibility */
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 4px;
}
.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    border-color: #2e7d32;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
.contact-form-wrapper .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 14px 40px;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form-wrapper .wpcf7-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.contact-form-wrapper .wpcf7-not-valid-tip {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #e53935;
}
.contact-form-wrapper .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}
.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    color: #2e7d32;
}
.contact-form-wrapper .wpcf7-mail-sent-ng {
    background: #ffebee;
    border-left: 4px solid #e53935;
    color: #c62828;
}


