/* ============================================
   ROBBIE D. WOOD - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary-red: #E4002B;
    --dark-grey: #222222;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --grey-medium: #666666;
    --grey-light: #E0E0E0;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 30px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--primary-red);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ============================================
   Header Styles
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: var(--white);
    opacity: 0.9;
}

.top-links a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.top-contact .phone-link {
    color: var(--white);
    font-weight: 600;
}

.top-contact .phone-link:hover {
    color: var(--primary-red);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    transition: padding var(--transition-normal), box-shadow var(--transition-normal);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: block;
    animation: logoPulse 2s ease-in-out;
}

.logo img {
    height: 60px;
    width: auto;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.95; }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-grey);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: right var(--transition-normal);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-list-mobile .nav-link {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-light);
}

.mobile-nav-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-light);
}

.mobile-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 1000ms ease-out;
}

.hero-bg.scrolled img {
    transform: translateY(50px);
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-name {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.value-statement {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.4;
}

/* Primary CTA Button */
.primary-cta {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: #c40025;
}

.primary-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Trust Element */
.trust-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-red);
}

.trust-text {
    font-size: 18px;
    font-weight: 600;
}

/* Secondary CTA */
.secondary-cta {
    display: inline-block;
    background-color: var(--dark-grey);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

.secondary-cta:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

/* ============================================
   Page Hero (Inner Pages)
   ============================================ */
.page-hero {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 48px);
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--grey-medium);
}

/* ============================================
   Services Preview Section
   ============================================ */
.services-preview {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--light-grey);
    padding: var(--card-padding);
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--grey-light);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(228, 0, 43, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey-medium);
    line-height: 1.6;
}

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

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-statement {
    font-size: 18px;
    color: var(--grey-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.key-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.value-item h4 {
    font-size: 16px;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--grey-medium);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

/* ============================================
   Process Section
   ============================================ */
.process-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(228, 0, 43, 0.4);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    color: var(--grey-medium);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--dark-grey);
    color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-section .section-header p {
    opacity: 0.8;
}

.testimonials-carousel {
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial-track {
    display: flex;
    transition: transform 500ms ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin: 0 10px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    opacity: 0.7;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* ============================================
   Blog Section
   ============================================ */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.blog-image {
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--grey-medium);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 20px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-phone {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-grey);
    display: block;
    margin-bottom: 20px;
    transition: color var(--transition-fast);
}

.contact-phone:hover {
    color: var(--primary-red);
}

.contact-subtitle {
    font-size: 16px;
    color: var(--grey-medium);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: 8px;
}

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--grey-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color var(--transition-fast);
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.submit-btn {
    width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-contact address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary-red);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-intro {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-intro-text p {
    font-size: 16px;
    color: var(--grey-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-grey);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-red);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: var(--grey-medium);
    font-weight: 600;
}

.about-mission {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-text .mission-statement {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 16px;
    color: var(--grey-medium);
    line-height: 1.8;
}

.about-values {
    padding: var(--section-padding);
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-grey);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

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

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--grey-medium);
    line-height: 1.6;
}

.about-history {
    padding: var(--section-padding);
    background-color: var(--dark-grey);
    color: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-text h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 25px;
}

.history-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.8;
}

.history-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.timeline-item {
    padding: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: center;
}

.timeline-year {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 14px;
    opacity: 0.9;
}

.about-cta {
    padding: 80px 0;
    background-color: var(--primary-red);
    text-align: center;
    color: var(--white);
}

.about-cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.about-cta .primary-cta {
    background-color: var(--white);
    color: var(--primary-red);
}

.about-cta .primary-cta:hover {
    background-color: var(--dark-grey);
    color: var(--white);
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-detail {
    padding: var(--section-padding);
    background-color: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid var(--grey-light);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey);
    border-radius: 8px;
}

.service-detail-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    color: var(--grey-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.service-advantages {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.advantage-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--grey-medium);
}

.service-cta {
    padding: var(--section-padding);
    background-color: var(--dark-grey);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .secondary-cta {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-buttons .secondary-cta:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}

/* ============================================
   Careers Page Styles
   ============================================ */
.careers-intro {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}

.careers-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.careers-intro p {
    font-size: 18px;
    color: var(--grey-medium);
    line-height: 1.8;
}

.careers-benefits {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--grey-medium);
}

.careers-openings {
    padding: var(--section-padding);
    background-color: var(--white);
}

.openings-list {
    display: grid;
    gap: 25px;
}

.opening-card {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.opening-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.opening-info h3 {
    font-size: 22px;
}

.opening-location,
.opening-type {
    font-size: 14px;
    color: var(--grey-medium);
    font-weight: 600;
}

.opening-details {
    margin-bottom: 20px;
}

.opening-details p {
    font-size: 15px;
    color: var(--grey-medium);
}

.careers-cta {
    padding: var(--section-padding);
    background-color: var(--primary-red);
    text-align: center;
    color: var(--white);
}

.careers-cta .cta-content h2 {
    color: var(--white);
}

.careers-cta .cta-content p {
    color: var(--white);
    opacity: 0.9;
}

.careers-cta .primary-cta {
    background-color: var(--white);
    color: var(--primary-red);
}

.careers-cta .primary-cta:hover {
    background-color: var(--dark-grey);
    color: var(--white);
}

.careers-cta .secondary-cta {
    border-color: var(--white);
    color: var(--white);
}

.careers-cta .secondary-cta:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-main {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info-section > p {
    font-size: 16px;
    color: var(--grey-medium);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.contact-item address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a {
    font-size: 15px;
}

.locations-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.locations-list {
    list-style: none;
}

.locations-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

.locations-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 20px;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form-section .contact-form {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: 8px;
}

.contact-cta {
    padding: var(--section-padding);
    background-color: var(--dark-grey);
    text-align: center;
    color: var(--white);
}

.contact-cta .cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-cta .cta-content p {
    color: var(--white);
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-cta .primary-cta {
    background-color: var(--primary-red);
}

.contact-cta .primary-cta:hover {
    background-color: #c40025;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .mission-content,
    .history-content,
    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .advantages-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro-content {
        grid-template-columns: 1fr;
    }
    
    .about-intro-stats {
        max-width: 500px;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detail-icon {
        margin: 0 auto;
    }
    
    .service-features {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 80vh;
    }
    
    .trust-element {
        flex-direction: column;
        gap: 5px;
    }
    
    .trust-number {
        font-size: 36px;
    }
    
    .process-steps,
    .values-grid,
    .advantages-grid,
    .benefits-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .key-values {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .contact-phone {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .opening-info {
        flex-direction: column;
    }
    
    .history-timeline {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .contact-form-section .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .primary-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .service-detail-icon {
        width: 150px;
        height: 150px;
    }
    
    .service-detail-icon img {
        width: 100px;
        height: 100px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
