/* ================================
   CSS RESET & BASE STYLES
   ================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f3;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #2c2c2c, #4a4a4a);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1a1a1a, #333);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #2c2c2c;
    padding: 1rem 2rem;
    border: 2px solid #2c2c2c;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    background: transparent;
    color: #2c2c2c;
    padding: 0.75rem 1.5rem;
    border: 1px solid #2c2c2c;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #2c2c2c;
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.nav-logo i {
    font-size: 1.8rem;
    color: #8b7355;
}

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

.nav-menu a {
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8b7355;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b7355;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-left: 20px;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e3d3 100%);
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text {
    padding-right: 2rem;
}

.hero-intro {
    font-style: italic;
    color: #8b7355;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}


.hero-title {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}

.hero-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-video-btn i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f6f3;
    border-radius: 5px;
}

.feature-item i {
    color: #8b7355;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: #2c2c2c;
}

.about-image img {
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
@media (max-width: 480px) {
    .about-image img {
        height: 400px;
    }
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
    padding: 5rem 0;
    background: #2c2c2c;
    color: white;
    position: relative;
}

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

.services-header .section-subtitle {
    color: #ccc;
}

.services-header h2 {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-icon i {
    font-size: 2rem;
    color: #8b7355;
}

.service-icon span {
    font-weight: 500;
    color: white;
}

.cta-section {
    text-align: center;
}

.services-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 200px;
    opacity: 0.1;
}

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

/* ================================
   METHODS SECTION
   ================================ */

.methods {
    padding: 5rem 0;
    background: white;
}

.methods h2 {
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.methods > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.method-card {
    text-align: center;
}

.method-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.method-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.method-card p {
    color: #666;
    line-height: 1.6;
}

/* ================================
   BLOG SECTION
   ================================ */

.blog {
    padding: 5rem 0;
    background: #2c2c2c;
    color: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.blog-header p {
    color: #ccc;
}

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

.blog-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-content time {
    color: #8b7355;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    color: white;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.blog-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #8b7355;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #8b7355;
}

/* ================================
   PRICING SECTION
   ================================ */

.pricing {
    padding: 5rem 0;
    background: #2c2c2c;
    color: white;
}

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

.pricing-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.pricing-header p {
    color: #ccc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    background: rgba(139, 115, 85, 0.1);
    border-color: #8b7355;
    transform: scale(1.05);
}

.pricing-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #8b7355;
    vertical-align: top;
}

.amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.period {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-card h4 {
    color: #8b7355;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #ccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-pricing:hover {
    background: white;
    color: #2c2c2c;
}

.btn-pricing.featured {
    background: #8b7355;
    border-color: #8b7355;
    color: white;
}

.btn-pricing.featured:hover {
    background: white;
    color: #8b7355;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
    padding: 5rem 0;
    background: #2c2c2c;
    color: white;
}

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

.contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #ccc;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8b7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ccc;
    margin: 0;
}

.social-media p {
    color: #ccc;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: #8b7355;
    transform: translateY(-2px);
}

.social-links i {
    color: white;
    font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    background: rgba(255,255,255,0.15);
}

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

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.btn-submit {
    width: 100%;
    background: #8b7355;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #a08866;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-logo i {
    font-size: 1.8rem;
    color: #8b7355;
}

.footer-nav ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-legal ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-page {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    background: white;
}

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

.legal-header h1 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-style: italic;
}

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

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8b7355;
}

.legal-content h3 {
    color: #333;
    margin: 2rem 0 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

.legal-content a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #a08866;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #f8f6f3;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background: #8b7355;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* ================================
   THANK YOU PAGE
   ================================ */

.thank-you-page {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e3d3 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #8b7355;
}

.thank-you-content h1 {
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #8b7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-content h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.social-follow {
    margin-bottom: 3rem;
}

.social-follow h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.social-follow p {
    color: #666;
    margin-bottom: 2rem;
}

.social-follow .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #2c2c2c;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: #8b7355;
    color: white;
}

.social-link i {
    font-size: 1.2rem;
}

.thank-you-quote {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thank-you-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    position: relative;
}

.thank-you-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #8b7355;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.thank-you-quote cite {
    display: block;
    margin-top: 1rem;
    color: #8b7355;
    font-weight: 500;
    font-style: normal;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-nav ul,
    .footer-legal ul {
        justify-content: center;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-follow .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul,
    .footer-legal ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #8b7355;
    outline-offset: 2px;
} 