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

:root {
    --primary: #E08C38;
    --primary-rgb: 224, 140, 56;
    --secondary: #BBBB2A;
    --secondary-rgb: 187, 187, 42;
    --accent: #F48A8A;
    --accent-rgb: 244, 138, 138;
    --bg: #FFFAF5;
    --bg-alt: #FAF5EF;
    --text-color: #2D2319;
    --text-muted-color: #6B5D4F;
    --section-dark: #2D2319;
    --section-accent: #FAF0E6;
    --white: #ffffff;
    --border: rgba(45, 35, 25, 0.1);
    --shadow-sm: 0 2px 8px rgba(45, 35, 25, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 35, 25, 0.08);
    --shadow-lg: 0 12px 32px rgba(45, 35, 25, 0.12);
    --shadow-xl: 0 20px 40px rgba(45, 35, 25, 0.15);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-primary: 'Nunito', system-ui, -apple-system, sans-serif;
    --transition: 0.3s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-color);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--secondary);
}

.content-section p a,
.feature p a,
.card-body p a,
.testimonial-card p a,
.section-dark p a,
.section-accent p a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.content-section p a:hover,
.feature p a:hover,
.card-body p a:hover {
    text-decoration-thickness: 2.5px;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(1deg); }
    66% { transform: translateY(-6px) rotate(-0.5deg); }
}

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

@keyframes warmPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(224, 140, 56, 0.25);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(224, 140, 56, 0);
    }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.row > * {
    padding-left: 12px;
    padding-right: 12px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-2 > * {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-3 > * {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
}

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.grid-4 > * {
    flex: 1 1 calc(25% - 18px);
    min-width: 220px;
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(45, 35, 25, 0.1);
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 90%;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 8px 28px;
    box-shadow: 0 4px 20px rgba(45, 35, 25, 0.14);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted-color);
    text-decoration: none;
    border-radius: 999px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(224, 140, 56, 0.08);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    z-index: 1001;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--section-dark) 0%, #3D3228 60%, var(--primary) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    padding: 120px 0 140px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    bottom: -40px;
    left: -60px;
    z-index: 0;
    animation: float 9s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 640px;
    padding: 0 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.header-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--section-dark) 0%, #3D3228 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    text-align: center;
    overflow: hidden;
}

.header-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    top: -80px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.header-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.header-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--section-dark);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

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

.section-dark a:hover {
    color: var(--accent);
}

.section-accent {
    background: var(--section-accent);
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted-color);
    font-size: 1.1rem;
}

.section-dark .section-header h2::after {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.06);
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-muted-color);
    font-size: 0.95rem;
    flex: 1;
}

.feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.06), transparent);
    transition: height 0.4s ease;
}

.feature:hover::before {
    height: 100%;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--accent-rgb), 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-muted-color);
    font-size: 0.95rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted-color);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    padding-top: 12px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
}

.testimonial-card .author-role {
    font-size: 0.8rem;
    color: var(--text-muted-color);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 4px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted-color);
}

.pricing-card ul {
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted-color);
}

.two-col-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.two-col-layout > * {
    flex: 1 1 45%;
    min-width: 300px;
}

.two-col-layout.reverse {
    flex-direction: row-reverse;
}

.two-col-layout img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.two-col-layout img:hover {
    transform: scale(1.03);
}

.two-col-layout h2 {
    margin-bottom: 16px;
}

.two-col-layout p {
    color: var(--text-muted-color);
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    transition: background-position 0.35s ease, color 0.35s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background-position: left;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.section-dark .btn-primary {
    border-color: var(--primary);
    color: var(--white);
    background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: left;
}

.section-dark .btn-primary:hover {
    background-position: right;
    color: var(--primary);
}

.section-dark .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.section-dark .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.section-angled {
    position: relative;
    padding: 100px 0 120px;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin-top: -40px;
    margin-bottom: -40px;
}

.section-angled-alt {
    position: relative;
    padding: 100px 0 120px;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -40px;
    margin-bottom: -40px;
}

.section-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: -1px 0;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.section-divider.flip {
    transform: scaleY(-1);
}

form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted-color);
    opacity: 0.6;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item summary {
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    transition: color var(--transition);
}

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

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 12px;
    color: var(--text-muted-color);
    font-size: 0.95rem;
    padding-right: 32px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-grid > * {
    flex: 1 1 calc(33.333% - 11px);
    min-width: 200px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.cta-block {
    text-align: center;
    padding: 64px 32px;
    background: linear-gradient(135deg, var(--primary), #D67520);
    border-radius: var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-block::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-block h2 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-block .btn-primary {
    border-color: var(--white);
    color: var(--white);
    background: linear-gradient(to right, var(--white) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right;
    position: relative;
    z-index: 1;
}

.cta-block .btn-primary:hover {
    background-position: left;
    color: var(--primary);
}

.team-member {
    text-align: center;
    padding: 24px;
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

.team-member:hover img {
    transform: scale(1.06);
}

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-muted-color);
    font-size: 0.9rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition);
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card .card-body {
    padding: 24px;
}

.blog-card .card-body .meta {
    font-size: 0.8rem;
    color: var(--text-muted-color);
    margin-bottom: 8px;
}

.blog-card .card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.blog-card .card-body h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-card .card-body h3 a:hover {
    color: var(--primary);
}

.stat-box {
    text-align: center;
    padding: 24px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.1;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.badge-accent {
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
}

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

.icon-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted-color);
}

.icon-list li i,
.icon-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted-color);
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

footer.footer-minimal {
    padding: 32px 24px;
    background: var(--section-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

footer.footer-minimal .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

footer.footer-minimal .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

footer.footer-minimal .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

footer.footer-minimal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

footer .footer-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-nav.visible {
    transform: translateY(0);
}

.mobile-nav .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav .mobile-nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mobile-nav .mobile-nav-links a:hover,
.mobile-nav .mobile-nav-links a.active {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
}

.mobile-nav-handle {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted-color); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.w-100 { width: 100%; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }

.bg-primary { background: var(--primary); }
.bg-white { background: var(--white); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }

.overflow-hidden { overflow: hidden; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate="fade-in"].visible {
    opacity: 1;
}

[data-animate="slide-left"] {
    transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(30px);
}

[data-animate="slide-right"].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="scale-in"] {
    transform: scale(0.92);
}

[data-animate="scale-in"].visible {
    opacity: 1;
    transform: scale(1);
}

[data-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
    opacity: 1;
    transform: translateY(0);
}

.schema-markup {
    display: none;
}

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-stagger] > * {
        opacity: 1;
        transform: none;
    }
}

@media screen and (max-width: 1280px) {
    .container {
        max-width: 960px;
    }

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

@media screen and (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }

    .hero {
        min-height: 80vh;
        padding: 100px 0 120px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-image {
        flex: none;
        max-width: 80%;
    }

    .hero-image img {
        transform: rotate(0deg);
    }

    .content-section {
        padding: 64px 0;
    }

    .section-dark {
        padding: 64px 0;
    }

    .section-accent {
        padding: 64px 0;
    }

    .two-col-layout {
        gap: 32px;
    }

    .grid-3 > * {
        flex: 1 1 calc(50% - 12px);
    }

    .grid-4 > * {
        flex: 1 1 calc(50% - 12px);
    }
}

@media screen and (max-width: 768px) {
    html { font-size: 15px; }

    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }

    .navbar {
        top: 12px;
        padding: 10px 20px;
        border-radius: 16px;
        max-width: 94%;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 0 100px;
        clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    }

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

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

    .hero-image {
        max-width: 100%;
        margin-top: 24px;
    }

    .header-hero {
        padding: 110px 0 60px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .header-hero h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 48px 0;
    }

    .section-dark {
        padding: 48px 0;
    }

    .section-accent {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .two-col-layout {
        gap: 24px;
    }

    .two-col-layout > * {
        min-width: 100%;
    }

    .grid-2 > *,
    .grid-3 > *,
    .grid-4 > * {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .gallery-grid > * {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .cta-block {
        padding: 48px 24px;
    }

    .section-angled {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
        padding: 80px 0 100px;
    }

    .section-angled-alt {
        clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
        padding: 80px 0 100px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    footer.footer-minimal .footer-content {
        flex-direction: column;
        gap: 16px;
    }
}

@media screen and (max-width: 480px) {
    html { font-size: 14px; }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.55rem; }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar {
        top: 8px;
        padding: 8px 16px;
        max-width: 96%;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 80px;
    }

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

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

    .header-hero {
        padding: 100px 0 50px;
    }

    .header-hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .card img {
        height: 180px;
    }

    .feature {
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .gallery-grid > * {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .blog-card img {
        height: 160px;
    }

    .cta-block {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 14px;
    }
}

@media print {
    .navbar,
    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        clip-path: none;
        min-height: auto;
        padding: 40px 0;
    }

    .header-hero {
        clip-path: none;
    }

    .content-section,
    .section-dark,
    .section-accent {
        padding: 20px 0;
    }
}
