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

:root {
    --gss-black: #1a1a1a;
    --gss-gold: #A9221A;
    --gss-lightgray: #f5f5f5;
    --gss-darkgray: #666666;
    --gss-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gss-black);
    background-color: var(--gss-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--gss-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gss-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.phone-link svg {
    color: var(--gss-gold);
}

/* Buttons */
.btn-primary {
    background-color: var(--gss-gold);
    color: var(--gss-white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--gss-gold);
}

.btn-primary:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--gss-black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--gss-black);
}

.btn-outline:hover {
    background-color: var(--gss-black);
    color: var(--gss-white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-submit {
    width: 100%;
    background-color: var(--gss-gold);
    color: var(--gss-white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.7) 100%), 
                url('https://asapsecurity.au/wp-content/uploads/2025/08/Security-guard-services-adelaide-South-Australia--e1757291699347.jpg') center center / cover no-repeat;
    padding: 80px 0;
    margin-top: 0;
    position: relative;
}

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

.hero-tagline {
    font-size: 28px;
    font-weight: 700;
    color: var(--gss-gold);
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: var(--gss-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gss-white);
    font-size: 16px;
}

.feature-item svg {
    color: var(--gss-gold);
    flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--gss-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gss-darkgray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Card */
.form-card {
    background-color: var(--gss-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--gss-black);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gss-black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gss-gold);
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight {
    color: var(--gss-gold);
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--gss-gold);
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--gss-darkgray);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--gss-white);
}

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

.benefit-card {
    padding: 30px;
    background-color: var(--gss-lightgray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gss-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    color: var(--gss-white);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gss-black);
}

.benefit-card p {
    color: var(--gss-darkgray);
    line-height: 1.6;
}

/* Client Logos Scroller Section */
.client-logos-section {
    padding: 60px 0;
    background-color: var(--gss-lightgray);
}

.client-logos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client-logos-title {
    text-align: left;
}

.client-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gss-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.client-logos-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gss-black);
    margin: 0;
}

.logos-scroller-container {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, var(--gss-lightgray), transparent);
    z-index: 10;
    pointer-events: none;
}

.gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--gss-lightgray), transparent);
    z-index: 10;
    pointer-events: none;
}

.logos-scroller {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.logos-scroller:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-card {
    width: 288px;
    height: 160px;
    background-color: var(--gss-white);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.logo-card img {
    max-height: 128px;
    max-width: 256px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--gss-white), var(--gss-lightgray));
}

.testimonials-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.testimonials-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gss-black);
}

.testimonials-header p {
    font-size: 18px;
    color: var(--gss-darkgray);
    line-height: 1.6;
}

.quote-icon {
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.1;
    z-index: 0;
}

.quote-icon svg {
    color: var(--gss-gold);
}

.testimonial-main-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--gss-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 8px 1fr;
}

.testimonial-accent {
    background-color: var(--gss-gold);
}

.testimonial-content {
    padding: 48px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    color: var(--gss-gold);
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--gss-darkgray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gss-black);
    margin-bottom: 8px;
}

.author-position,
.author-company {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gss-darkgray);
    font-size: 14px;
    margin-bottom: 4px;
}

.author-position svg,
.author-company svg {
    color: var(--gss-gold);
    flex-shrink: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--gss-lightgray);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background-color: var(--gss-gold);
    color: var(--gss-white);
}

.testimonial-nav-btn svg {
    color: inherit;
}

.testimonial-counter {
    font-size: 14px;
    font-weight: 600;
    color: var(--gss-black);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--gss-gold);
}

.testimonial-cta-box {
    background-color: var(--gss-gold);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-cta-box:hover {
    transform: scale(1.02);
}

.testimonial-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gss-white);
    margin-bottom: 16px;
}

.testimonial-cta-box p {
    color: var(--gss-white);
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
}

.testimonial-cta-box .btn-primary {
    background-color: var(--gss-white);
    color: var(--gss-black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.testimonial-cta-box .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--gss-white);
}

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

.service-card {
    padding: 30px;
    background-color: var(--gss-lightgray);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gss-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--gss-black);
}

.service-icon svg {
    color: var(--gss-white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--gss-black);
}

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

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--gss-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-outline {
    border-color: var(--gss-white);
    color: var(--gss-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-outline:hover {
    background-color: var(--gss-white);
    color: var(--gss-black);
}

/* Certifications Section */
.certifications {
    background-color: var(--gss-black);
    padding: 80px 0;
    color: var(--gss-white);
}

.certifications-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.certifications-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gss-white);
}

.certifications-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.certification-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cert-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cert-icon svg {
    color: var(--gss-gold);
}

.certification-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gss-white);
}

.certification-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.accreditations-section {
    margin-top: 60px;
}

.accreditations-header {
    text-align: center;
    margin-bottom: 40px;
}

.accreditations-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gss-white);
}

.accreditations-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.accreditation-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-items: center;
}

.accreditation-logo {
    background-color: var(--gss-white);
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accreditation-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.accreditation-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
}

.badge p {
    color: var(--gss-gold);
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--gss-black);
    color: var(--gss-white);
    padding: 60px 0 30px;
}

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

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

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gss-gold);
}

.social-links svg {
    color: var(--gss-white);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--gss-gold);
    font-size: 18px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gss-gold);
}

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

.footer-locations li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-locations svg {
    color: var(--gss-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-locations strong {
    color: var(--gss-white);
}

.footer-locations a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-locations a:hover {
    color: var(--gss-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.footer-licenses p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gss-gold);
}

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

.acknowledgment-flags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.flag-img {
    max-height: 25px;
    width: auto;
}

.footer-acknowledgment p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--gss-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    gap: 12px;
    z-index: 1000;
}

.sticky-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sticky-btn-call {
    background-color: var(--gss-black);
    color: var(--gss-white);
}

.sticky-btn-call:hover {
    background-color: #2d2d2d;
}

.sticky-btn-quote {
    background-color: var(--gss-gold);
    color: var(--gss-white);
}

.sticky-btn-quote:hover {
    background-color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-cta .phone-link {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .mobile-sticky-footer {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-licenses p {
        font-size: 11px;
    }
    
    .client-logos-wrapper {
        flex-direction: column;
    }
    
    .client-logos-title {
        text-align: center;
    }
    
    .client-logos-title h2 {
        font-size: 28px;
    }
    
    .logo-card {
        width: 240px;
        height: 140px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
    
    .stat-box {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .testimonials-header h2 {
        font-size: 32px;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-controls {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-cta-box {
        padding: 32px 24px;
    }
    
    .testimonial-cta-box h3 {
        font-size: 24px;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-footer {
        display: none !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Success Message */
.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.form-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
