/* Public Website Styles for Guernsey Payroll */

/* Custom CSS Variables - Guernsey Payroll Branding */
:root {
    --primary-color: #00772b;
    --primary-dark: #004d18;
    --primary-light: #00a63a;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

/* Bootstrap Primary Button Override */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.btn-primary:active,
.btn-primary.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

/* Typography - Inter Font */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Utility Classes for Professional Development */
.icon-large {
    font-size: 3rem;
}

.icon-xl {
    font-size: 4rem;
}

.icon-xxl {
    font-size: 5rem;
}

.icon-medium {
    font-size: 2rem;
}

.sticky-content {
    position: sticky;
    top: 100px;
}

.spinner-large {
    width: 3rem;
    height: 3rem;
}

.cursor-pointer {
    cursor: pointer;
}

.step-number {
    width: 50px;
    height: 50px;
}

.demo-video-container {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monospace-content {
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
}

.large-text {
    font-size: 1.2em;
    font-weight: bold;
}

.medium-text {
    font-size: 1.1em;
}

.fixed-height-100 {
    height: 100px;
}

.missing-data {
    color: red;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Compact Page Header for Terms/Privacy Pages */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
    padding: 40px 0 !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
}

.hero-content {
    text-align: center;
}

.hero-section .hero-title {
    color: white;
}

.hero-buttons .btn {
    margin: 0 10px 10px 0;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-hero-primary:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-icon.bg-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.feature-icon.bg-success {
    background: linear-gradient(45deg, var(--success-color), #51cf66);
}

.feature-icon.bg-warning {
    background: linear-gradient(45deg, var(--warning-color), #ffd43b);
}

.feature-icon.bg-info {
    background: linear-gradient(45deg, var(--info-color), #74c0fc);
}

/* Statistics Section */
.stats-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 166, 58, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.pricing-period {
    color: var(--secondary-color);
    font-size: 1rem;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section .section-title {
    color: white;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.testimonial-author strong {
    color: var(--primary-light);
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 58, 0.25);
}

.contact-form textarea.form-control {
    min-height: 120px;
}

/* Demo Section */
.demo-screenshot {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .page-header-section {
        padding: 30px 0 !important;
        min-height: auto !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Badge */
.badge-new {
    background-color: var(--guernsey-gold);
    color: var(--dark-color);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 10px;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===============================================
   LEGAL PAGES STYLES (TERMS & PRIVACY)
   =============================================== */

.terms-content, .privacy-content {
    font-size: 1rem;
    line-height: 1.7;
}

.terms-content h2, .privacy-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.terms-content h4, .privacy-content h4 {
    color: #004d18; /* Darker shade of main green */
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.terms-content .alert-info {
    background-color: #e8f5e8; /* Light green background */
    border-color: var(--primary-color);
    color: #004d18;
}

.terms-content .alert-warning, .privacy-content .alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.terms-content .nav-link, .privacy-content .nav-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.terms-content .nav-link:hover, .privacy-content .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 119, 43, 0.1);
}

.terms-content .nav-link.active, .privacy-content .nav-link.active {
    color: white;
    background-color: var(--primary-color);
}

.terms-content .card, .privacy-content .card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-content .card-header, .privacy-content .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: var(--primary-color);
}

/* Legal page specific card styling */
.privacy-content .card h6 i {
    color: var(--primary-color);
}

.privacy-content .card .text-primary {
    color: var(--primary-color) !important;
}

.privacy-content .card .text-success {
    color: #004d18 !important;
}

.privacy-content .card .text-info {
    color: #00772b !important;
}

.privacy-content .card .text-danger {
    color: #dc3545 !important;
}

/* Make sure the main content doesn't conflict */
.terms-content ul, .privacy-content ul {
    margin-left: 1.5rem;
}

.terms-content ul li, .privacy-content ul li {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* ===============================================
   PRICING PAGE STYLES
   =============================================== */

.pricing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cards {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    border: 2px solid #e9ecef;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 134, 49, 0.05) 0%, rgba(0, 134, 49, 0.02) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.period {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trial-info {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

.savings {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--dark-color);
    text-align: left;
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-cta-button {
    margin-top: 1.5rem;
}

.pricing-faq {
    padding: 5rem 0;
    background: white;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.pricing-cta {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.pricing-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-cta h2 {
        font-size: 2rem;
    }
}

/* ===============================================
   BEAUTIFUL MODERN CTA BUTTONS
   =============================================== */

.pricing-cta-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.pricing-cta-btn:hover::before {
    transform: translateX(100%);
}

.pricing-cta-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.pricing-cta-btn .btn-content i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.pricing-cta-btn .btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-cta-btn .btn-subtext {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1;
}

/* Monthly Plan Button (Green Primary) */
.pricing-cta-btn.monthly-btn {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    border: 2px solid transparent;
}

.pricing-cta-btn.monthly-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 166, 58, 0.3);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.pricing-cta-btn.monthly-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 166, 58, 0.4);
}

/* Annual Plan Button (Premium Green) */
.pricing-cta-btn.annual-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* ===============================================
   GDPR COOKIE CONSENT BANNER
   =============================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-header h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-consent-body p {
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-categories {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #e9ecef;
}

.cookie-category {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category .form-check {
    margin-bottom: 0.5rem;
}

.cookie-category .form-check-label {
    font-size: 0.95rem;
    color: var(--dark-color);
}

.cookie-details summary {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-size: 0.85rem;
}

.cookie-details summary:hover {
    text-decoration: underline;
}

.cookie-details ul {
    margin: 0;
    padding-left: 1.5rem;
}

.cookie-details li {
    margin-bottom: 0.25rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0 1rem 0;
}

.cookie-consent-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.cookie-consent-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-consent-footer a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1rem;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-actions .btn {
        margin-bottom: 0.5rem;
    }
    
    .cookie-consent-banner {
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .cookie-consent-header h4 {
        font-size: 1rem;
    }
    
    .cookie-consent-body p {
        font-size: 0.9rem;
    }
}

.pricing-cta-btn.annual-btn {
    color: white;
    border: 2px solid var(--primary-light);
    position: relative;
}

.pricing-cta-btn.annual-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-light), #ffd700, var(--primary-light));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-cta-btn.annual-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 43, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003d14 100%);
    color: white;
}

.pricing-cta-btn.annual-btn:hover::after {
    opacity: 1;
}

.pricing-cta-btn.annual-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 119, 43, 0.5);
}

/* Loading State */
.pricing-cta-btn:disabled {
    opacity: 0.8;
    transform: none !important;
    cursor: not-allowed;
}

.pricing-cta-btn .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button Animations */
.pricing-cta-btn {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments for Modern Buttons */
@media (max-width: 768px) {
    .pricing-cta-btn {
        min-height: 70px;
        padding: 0.75rem 1.5rem;
    }
    
    .pricing-cta-btn .btn-text {
        font-size: 1rem;
    }
    
    .pricing-cta-btn .btn-subtext {
        font-size: 0.8rem;
    }
    
    .cta-buttons .pricing-cta-btn {
        width: 100%;
        max-width: 350px;
    }
}

/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

/* Map placeholder container */
.map-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Large map icon */
.map-icon-large {
    font-size: 3rem;
}

/* ===============================================
   CONTACT FORM STYLES
   =============================================== */

.contact-info-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: rgba(0, 119, 43, 0.05);
    transform: translateY(-2px);
}

.contact-info-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Form Specific Styles */
#contactForm .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#contactForm .form-label i {
    color: var(--primary-color);
    font-size: 1.1em;
}

#contactForm .form-control,
#contactForm .form-select {
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 43, 0.25);
}

#contactForm .form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

#contactForm .form-select-lg {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

#contactForm textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

#contactForm .text-danger {
    color: #dc3545 !important;
}

#contactForm .form-text {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

#contactForm .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

#contactForm .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 43, 0.3);
}

#contactForm .btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

/* Form Status Messages */
#formStatus.alert {
    margin-top: 1rem;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
}

#formStatus.alert-success {
    background-color: #d4edda;
    border-color: var(--primary-color);
    color: #004d18;
}

#formStatus.alert-danger {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* Spinner for loading state */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Form Card Shadow */
#contactForm .card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    border-radius: 1rem !important;
}

/* Required field indicator */
#contactForm .text-danger {
    font-weight: 600;
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .contact-info-item {
        margin-bottom: 1rem;
    }
    
    #contactForm .card-body {
        padding: 2rem !important;
    }
    
    #contactForm .btn-lg {
        width: 100%;
        padding: 1rem;
    }
}
