/* Legal Pages */
.legal-section {
    padding: 12rem 0 6rem;
    background: var(--surface);
}

.legal-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-section h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-group h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-group a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-group p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 9rem 0 4rem;
    }

    .legal-section h1 {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 0 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .footer {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 8rem 0 3rem;
    }

    .legal-section h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 0 1rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-group {
        text-align: center;
    }
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --success: #22c55e;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
}

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

section {
    padding: 4rem 0;
    overflow: hidden;
}

/* Typography */
h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    cursor: default;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.8rem;
    }

    .nav-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    overflow: hidden;
    background: var(--surface);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        height: 300px;
        margin: 0 -1rem;
        border-radius: 0;
    }

    .hero-image img {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8rem 0 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.875rem;
    }

    .hero-image {
        height: 250px;
    }
}

/* Quick Actions Section */
.quick-actions {
    padding: 4rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.quick-actions-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.quick-action-card {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quick-action-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.quick-action-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.quick-action-card.featured h3 {
    color: white;
}

.quick-action-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quick-action-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.action-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 2rem;
    z-index: 1;
}

.float-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.float-card:hover {
    transform: translateY(-10px);
}

.float-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.float-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .quick-actions-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-actions {
        padding: 2rem 0;
    }

    .quick-actions-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .quick-action-card {
        padding: 1.5rem;
    }

    .quick-action-card h3 {
        font-size: 1.2rem;
    }

    /* Hide floating cards on mobile */
    .floating-cards {
        display: none;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .about {
        padding: 6rem 0;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        text-align: center;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    /* Hide about image on mobile */
    .about-image {
        display: none;
    }
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.service-icon, 
.service-icon-featured {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.service-icon {
    background: var(--surface);
    color: var(--primary);
}

.service-icon-featured {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card.featured h3 {
    color: white;
}

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

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .service-icon,
    .service-icon-featured {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 2rem 0;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--surface);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-content {
    max-width: 500px;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form textarea {
    grid-column: span 2;
    resize: vertical;
    min-height: 120px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-content {
        text-align: center;
        margin: 0 auto;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-info {
        align-items: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form textarea {
        grid-column: span 1;
        min-height: 100px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 16px; /* Prevents iOS zoom */
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-wrapper {
        padding: 0 0.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .info-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

/* Form Responsive Styles */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .submit-button {
        width: 100%;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* Success/Error Messages */
.success-container, .error-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.success-container h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-container p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button, .secondary-button {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-button {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
}

.secondary-button {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.error-message {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Form status */
.form-container.loading {
    position: relative;
}

.form-container.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
}

.form-container.loading::after {
    content: '\f110';
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form placeholder styles */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    opacity: 0.7;
}

/* For Firefox */
.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    opacity: 0.7;
}

/* For Chrome/Safari/Opera */
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    opacity: 0.7;
}

/* For Internet Explorer */
.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    opacity: 0.7;
}

/* Input and textarea base styles */
.contact-form input,
.contact-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 1.5rem;
    }

    /* Navigation */
    .nav-content {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .quick-action-card h3 {
        font-size: 1.2rem;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-group h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-group a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-group p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-group {
        text-align: center;
    }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

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

.quick-action-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-tag {
        font-size: 0.9rem;
    }
}
