@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #ff6b6b;
    --primary-dark: #ee5a52;
    --secondary-color: #4ecdc4;
    --secondary-dark: #45b8b0;
    --accent-color: #ffe66d;
    --accent-dark: #f5d659;
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gray) 0%, #e8f4f8 100%);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

a:hover {
    color: var(--primary-dark);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn,
button,
input[type='submit'],
.button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before,
button::before,
input[type='submit']::before,
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn:hover::before,
button:hover::before,
input[type='submit']:hover::before,
.button:hover::before {
    opacity: 1;
}

.btn:hover,
button:hover,
input[type='submit']:hover,
.button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active,
button:active,
input[type='submit']:active,
.button:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.btn-secondary::before {
    background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline::before {
    background: var(--primary-color);
}

.btn-outline:hover {
    color: white;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    padding-bottom: 2px;
}

.read-more-link::after {
    content: '→';
    transition: transform var(--transition-normal);
}

.read-more-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.read-more-link:hover::after {
    transform: translateX(5px);
}

.read-more-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.read-more-link:hover::before {
    width: 100%;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-normal);
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-normal);
}

.navbar-item:hover {
    color: var(--primary-color);
}

.navbar-item:hover::after {
    width: 80%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.7), rgba(78, 205, 196, 0.7));
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title,
.hero h1,
.hero .title {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-subtitle,
.hero h2,
.hero .subtitle {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-lg);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-transform: none;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

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

.card,
.box {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover,
.box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image,
.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
}

.card-image img,
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    margin: 0 auto;
}

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

.card-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.card-title,
.card-content .title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.card-description,
.card-content p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.testimonial,
.testimonial-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.testimonial:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.portfolio-item,
.item,
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    height: 100%;
}

.portfolio-item:hover,
.item:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image,
.item-image,
.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img,
.item-image img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    margin: 0 auto;
}

.portfolio-item:hover .portfolio-image img,
.item:hover .item-image img,
.product-card:hover .product-image img {
    transform: scale(1.15);
}

.portfolio-content,
.item-content,
.product-content {
    padding: var(--spacing-md);
    text-align: center;
    width: 100%;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image,
.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
    border: 4px solid var(--primary-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img,
.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    margin: 0 auto;
}

.team-member:hover .team-image img,
.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    color: var(--text-medium);
    line-height: 1.6;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--secondary-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-question {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.contact-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-group,
.field {
    margin-bottom: var(--spacing-md);
}

.form-label,
.label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.input,
.textarea,
.select select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-normal);
    background: white;
}

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

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

.footer {
    background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    display: inline-block;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: white;
    font-weight: 600;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.about-section {
    background: white;
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-xl) 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-md);
}

.success-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease;
}

.success-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: var(--spacing-md);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-content h1 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.success-content p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.legal-page {
    padding-top: 100px;
}

.legal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 3px solid var(--primary-color);
}

.legal-content p,
.legal-content ul {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-content ul {
    padding-left: var(--spacing-md);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.columns.is-multiline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.column {
    flex: 1;
    min-width: 300px;
}

.column.is-full {
    flex: 0 0 100%;
}

.column.is-two-thirds {
    flex: 0 0 calc(66.666% - var(--spacing-md));
}

.column.is-one-third {
    flex: 0 0 calc(33.333% - var(--spacing-md));
}

.column.is-half {
    flex: 0 0 calc(50% - var(--spacing-md));
}

.column.is-one-quarter {
    flex: 0 0 calc(25% - var(--spacing-md));
}

@media (max-width: 1024px) {
    .column.is-two-thirds,
    .column.is-one-third,
    .column.is-half,
    .column.is-one-quarter {
        flex: 0 0 calc(50% - var(--spacing-md));
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    button,
    input[type='submit'],
    .button {
        width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .column.is-two-thirds,
    .column.is-one-third,
    .column.is-half,
    .column.is-one-quarter {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .navbar-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-lg) 0;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .legal-content {
        padding: var(--spacing-md);
    }

    .success-content {
        padding: var(--spacing-md);
    }
}

.has-text-centered {
    text-align: center;
}

.has-text-left {
    text-align: left;
}

.has-text-right {
    text-align: right;
}

.is-flex {
    display: flex;
}

.is-justify-content-center {
    justify-content: center;
}

.is-align-items-center {
    align-items: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.pt-1 { padding-top: var(--spacing-xs); }
.pt-2 { padding-top: var(--spacing-sm); }
.pt-3 { padding-top: var(--spacing-md); }
.pt-4 { padding-top: var(--spacing-lg); }
.pt-5 { padding-top: var(--spacing-xl); }

.pb-1 { padding-bottom: var(--spacing-xs); }
.pb-2 { padding-bottom: var(--spacing-sm); }
.pb-3 { padding-bottom: var(--spacing-md); }
.pb-4 { padding-bottom: var(--spacing-lg); }
.pb-5 { padding-bottom: var(--spacing-xl); }
/* ============================================
   ABOUT & CONTACT PAGES
   ============================================ */

/* Page Hero */
.section-page-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  text-align: center;
}

.page-main-title {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-page-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Story Section */
.section-story {
  background: var(--bg-gray);
}

.section-story .section-title {
  color: var(--primary-color);
}

.content-text {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-story img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* Mission Cards */
.mission-card {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

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

.section-mission {
  background: var(--bg-light);
}

.section-mission .section-title {
  color: var(--primary-color);
}

/* Team Section */
.section-team {
  background: var(--bg-gray);
}

.section-team .section-title {
  color: var(--primary-color);
}

.section-team .section-subtitle {
  color: var(--text-medium);
}

.team-grid {
  margin-top: 1rem;
}

.team-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  height: 100%;
  border: none;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card .image-container {
  overflow: hidden;
}

.team-card .image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.team-bio {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Achievements */
.section-achievements {
  background: var(--bg-light);
}

.section-achievements .section-title {
  color: var(--primary-color);
}

.achievement-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-gray);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.achievement-item h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.achievement-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Testimonials (About Page) */
.section-testimonials-about {
  background: var(--bg-gray);
}

.section-testimonials-about .section-title {
  color: var(--primary-color);
}

.testimonial-card-about {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
  border: none;
}

.testimonial-card-about:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-info .testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.testimonial-info .testimonial-location {
  color: var(--text-medium);
  font-size: 0.85rem;
}

.testimonial-text {
  color: var(--text-medium);
  line-height: 1.7;
  font-style: italic;
}

/* Gallery */
.section-gallery {
  background: var(--bg-light);
}

.section-gallery .section-title {
  color: var(--primary-color);
}

.section-gallery .section-subtitle {
  color: var(--text-medium);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA (About Page) */
.section-cta-about {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 4rem 0;
}

.section-cta-about .section-title {
  color: #fff;
}

.section-cta-about .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Page */
.hero-section {
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Info Cards */
.section-contact-info {
  background: var(--bg-light);
}

.contact-info-card {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
  border: none;
  border-top: 4px solid var(--secondary-color);
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Contact Form */
.section-contact-form {
  background: var(--bg-gray);
}

.section-contact-form .section-title {
  color: var(--primary-color);
}

.section-contact-form .section-subtitle {
  color: var(--text-medium);
}

.contact-form .input,
.contact-form .textarea {
  border: 2px solid var(--bg-gray);
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

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

/* Hours Section */
.section-hours {
  background: var(--bg-light);
}

.section-hours .section-title {
  color: var(--primary-color);
}

.hours-card {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: none;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 700;
  color: var(--text-dark);
}

.hours-time {
  color: var(--primary-color);
  font-weight: 600;
}

.hours-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-gray);
  border-radius: var(--border-radius-sm);
}

.hours-note p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Map Section */
.section-map {
  background: var(--bg-gray);
}

.section-map .section-title {
  color: var(--primary-color);
}

.section-map .section-subtitle {
  color: var(--text-medium);
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
}

/* Additional Info */
.section-additional-info {
  background: var(--bg-light);
}

.info-card {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
  border: none;
}

.info-card:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .section-page-hero {
    padding: 5rem 0 2rem;
  }

  .page-main-title {
    font-size: 2rem;
  }

  .hero-section {
    min-height: 200px;
  }
}
