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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #f7fafc;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    font-size: 1.15rem;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
    color: #667eea;
    padding: 1.2rem 2.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.btn-cta {
    background: transparent;
    color: #667eea;
    padding: 0.9rem 1.8rem;
    border: 1px solid #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border-radius: 5px;
}

.btn-cta:hover {
    background: #667eea;
    color: white;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 250, 252, 0.97);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d3748;
}

.nav-logo i {
    font-size: 2rem;
    color: #667eea;
}

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

.nav-menu a {
    font-weight: 600;
    color: #2d3748;
    transition: color 0.4s ease;
    position: relative;
    font-size: 1.05rem;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 3px;
    background: #667eea;
    transition: width 0.4s ease;
    border-radius: 2px;
}

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2d3748;
    transition: all 0.4s ease;
    border-radius: 2px;
}

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

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

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

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

.hero-intro {
    font-style: italic;
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.hero-title {
    color: #2d3748;
    margin-bottom: 1.8rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    max-height: 650px;
    width: 100%;
    object-fit: cover;
}

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

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

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

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

.stat-item {
    padding: 1.2rem;
}

.stat-number {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 0.7rem;
}

.stat-label {
    color: #4a5568;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

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

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

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

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

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem;
    background: #f7fafc;
    border-radius: 8px;
}

.feature-item i {
    color: #667eea;
    font-size: 1.4rem;
}

.feature-item span {
    font-weight: 600;
    color: #2d3748;
}

.about-image img {
    height: 650px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
    .about-image img {
        height: 420px;
    }
}

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

.services {
    padding: 6rem 0;
    background: #1a202c;
    color: white;
    position: relative;
}

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

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

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

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

.service-card {
    text-align: center;
    padding: 2.5rem 1.3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

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

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

.service-icon i {
    font-size: 2.2rem;
    color: #667eea;
}

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

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

.services-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 350px;
    height: 220px;
    opacity: 0.08;
}

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

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

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

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

.methods > .container > p {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
}

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

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

.method-image {
    width: 100%;
    height: 320px;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

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

.method-card h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.method-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

.blog {
    padding: 6rem 0;
    background: #1a202c;
    color: white;
}

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

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

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

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

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

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

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

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

.blog-content {
    padding: 2.5rem;
}

.blog-content time {
    color: #667eea;
    font-size: 0.95rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

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

.blog-content p {
    color: #a0aec0;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.read-more {
    color: #667eea;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.read-more:hover {
    border-bottom-color: #667eea;
}

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

.pricing {
    padding: 6rem 0;
    background: #1a202c;
    color: white;
}

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

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

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

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

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    background: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    transform: scale(1.08);
}

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

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

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

.price {
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 1.7rem;
    color: #667eea;
    vertical-align: top;
}

.amount {
    font-family: 'Crimson Text', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
}

.period {
    display: block;
    color: #a0aec0;
    font-size: 0.95rem;
    margin-top: 0.7rem;
}

.pricing-card h4 {
    color: #667eea;
    font-size: 0.95rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 1.8rem;
}

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

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

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

.btn-pricing {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    width: 100%;
}

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

.btn-pricing.featured {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.btn-pricing.featured:hover {
    background: white;
    color: #667eea;
}

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

.contact {
    padding: 6rem 0;
    background: #1a202c;
    color: white;
}

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

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

.contact-info > p {
    color: #a0aec0;
    margin-bottom: 4rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

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

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

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

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

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

.social-media p {
    color: #a0aec0;
    margin-bottom: 1.2rem;
}

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

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

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

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

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 3.5rem;
    border-radius: 12px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid transparent;
    border-radius: 8px;
    color: white;
    font-size: 1.05rem;
    transition: all 0.4s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.18);
}

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

.error-message {
    display: block;
    color: #fc8181;
    font-size: 0.95rem;
    margin-top: 0.7rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.btn-submit {
    width: 100%;
    background: #667eea;
    color: white;
    border: none;
    padding: 1.4rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    background: #5a67d8;
    transform: translateY(-3px);
}

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

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

.footer {
    background: #0f1419;
    color: white;
    padding: 4rem 0 1.2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
}

.footer-logo i {
    font-size: 2rem;
    color: #667eea;
}

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

.footer-nav a {
    color: #a0aec0;
    transition: color 0.4s ease;
}

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

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

.footer-legal a {
    color: #718096;
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 0.95rem;
}

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

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

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

.legal-header h1 {
    color: #2d3748;
    margin-bottom: 1.2rem;
}

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

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

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

.legal-content h2 {
    color: #2d3748;
    margin-bottom: 1.8rem;
    padding-bottom: 0.7rem;
    border-bottom: 3px solid #667eea;
}

.legal-content h3 {
    color: #2d3748;
    margin: 2.5rem 0 1.2rem;
}

.legal-content ul {
    margin-left: 1.8rem;
    margin-bottom: 1.2rem;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 0.7rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

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

.cookie-table th {
    background: #667eea;
    color: white;
    font-weight: 700;
}

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

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

.thank-you-page {
    padding: 9rem 0 6rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

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

.thank-you-icon i {
    font-size: 4.5rem;
    color: #667eea;
}

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

.thank-you-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 4rem;
    line-height: 1.7;
}

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

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

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

.info-content h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}

.info-content p {
    color: #4a5568;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.social-follow h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
}

.social-follow p {
    color: #4a5568;
    margin-bottom: 2.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: white;
    padding: 1.2rem 1.8rem;
    border-radius: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    color: #2d3748;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    background: #667eea;
    color: white;
}

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

.thank-you-quote {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.thank-you-quote blockquote {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2d3748;
    position: relative;
}

.thank-you-quote blockquote::before {
    content: '"';
    font-size: 4.5rem;
    color: #667eea;
    position: absolute;
    top: -1.2rem;
    left: -1.2rem;
}

.thank-you-quote cite {
    display: block;
    margin-top: 1.2rem;
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

#scrollToTop {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

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

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

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

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

    .pricing-card.featured {
        transform: none;
    }

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

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

    .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: 1.2rem;
    }
}

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

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

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

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

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid #667eea;
    outline-offset: 3px;
}
