/* Custom CSS for X3M Landing Page */

:root {
    --dark-teal: #2c5f5f;
    --light-blue: #e8f4f8;
    --dark-blue: #1a365d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #1a365d;
    --text-light: #ffffff;
    --border-color: #d1d5db;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 80px;
}

/* Header Styles */
.header {
    background-color: var(--dark-teal);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Clean VΣX Logo */
.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar-brand:hover .logo-text {
    letter-spacing: 4px;
    transform: translateY(-2px);
}

/* Footer Logo Styling */
.footer-brand .logo-text {
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-blue) !important;
}

.dropdown-toggle::after {
    display: none;
}

.header-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-buttons .btn-outline-primary {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
    background-color: var(--white);
}

.header-buttons .btn-outline-primary:hover {
    background-color: var(--light-blue);
    border-color: var(--dark-blue);
}

.header-buttons .btn-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
}

.header-buttons .btn-primary:hover {
    background-color: #2c5282;
    border-color: #2c5282;
}

/* Enhanced Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 60px 0 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(232, 244, 248, 0.3);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
}

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

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 160px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: #2c5282;
    border-color: #2c5282;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.hero-buttons .btn-outline-primary {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
    background-color: transparent;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.1);
}

.hero-buttons .btn-outline-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.2);
}

/* Enhanced Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 20px;
}


/* Redesigned Services Section */
.services-section {
    background-color: var(--dark-teal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Simple Service Cards */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.service-btn {
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 54, 93, 0.2);
    flex-shrink: 0;
    align-self: center;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: #2c5282;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

/* Redesigned Dealing Section */
.dealing-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d1e7dd 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dealing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(26,54,93,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.dealing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dealing-text {
    max-width: 600px;
}

.dealing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 0.9rem;
}

.dealing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.dealing-description {
    font-size: 1.2rem;
    color: var(--dark-blue);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.dealing-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Feature Cards Visual */
.dealing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Redesigned Partners Section */
.partners-section {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #1a4a4a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,2 28,8 28,22 15,28 2,22 2,8" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    opacity: 0.4;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.partners-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partners Slider Container */
.partners-slider-container {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.partnersSwiper {
    padding: 20px 0 50px 0;
}

.partnersSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-image-container {
    margin-bottom: 0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
}

.partner-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-image {
    opacity: 1;
    transform: scale(1.08);
}

.partner-info {
    display: none;
}

.partners-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper Navigation Buttons for Partners */
.partnersSwiper .swiper-button-next,
.partnersSwiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.partnersSwiper .swiper-button-next:hover,
.partnersSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.partnersSwiper .swiper-button-next::after,
.partnersSwiper .swiper-button-prev::after {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}

/* Swiper Pagination for Partners */
.partnersSwiper .swiper-pagination {
    bottom: 10px;
}

.partnersSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.partnersSwiper .swiper-pagination-bullet-active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .row {
    align-items: center;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.contact-form {
    background-color: var(--white);
    border: 2px solid var(--dark-blue);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 2rem;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
    outline: none;
}

.contact-form .btn {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.contact-form .btn:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.contact-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 5%;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 3%;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 25%;
}

/* Footer */
.footer {
    background-color: var(--dark-teal);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--dark-teal);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand .pubvex-logo {
    margin-bottom: 0;
}

.footer-brand .brand-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .logo-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-section {
        padding: 40px 0 60px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .hero-illustration {
        height: 300px;
        margin-top: 2rem;
        padding: 10px;
    }
    
    .hero-image {
        max-height: 280px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .service-image {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem auto;
        flex-shrink: 0;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }
    
    .service-description {
        flex-grow: 1;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        flex-shrink: 0;
        align-self: center;
        width: fit-content;
    }
    
    .dealing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .dealing-title {
        font-size: 1.8rem;
    }
    
    .dealing-description {
        font-size: 1rem;
    }
    
    .features-grid {
        max-width: 100%;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .dealing-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .partners-title {
        font-size: 2.2rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
    }
    
    .partners-slider-container {
        padding: 0 20px;
    }
    
    .partnersSwiper {
        padding: 15px 0 40px 0;
    }
    
    .partnersSwiper .swiper-slide {
        min-height: 140px;
    }
    
    .partnersSwiper .swiper-button-next,
    .partnersSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .partnersSwiper .swiper-button-next::after,
    .partnersSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .partner-image-container {
        height: 100px;
        margin-bottom: 0;
        padding: 12px;
    }
    
    .partner-image {
        max-height: 75px;
    }
    
    .partners-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-form {
        margin-left: 0;
        padding: 2rem;
    }
    
    .contact-form .form-control {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .dealing-illustration {
        height: 200px;
        margin-bottom: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ========================================
   ADMIN EDIT FUNCTIONALITY STYLES
   ======================================== */

/* Editable Content Indicator */
.editable {
    position: relative;
    cursor: pointer;
}

.editable:hover::after {
    content: '✏️';
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Edit Modal Overlay */
.edit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(4px);
}

/* Edit Modal Content */
.edit-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    min-width: 400px;
    max-width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.edit-modal-content h4 {
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    font-weight: 600;
}

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

.edit-modal-content .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.edit-modal-content .form-control:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
    outline: none;
}

.edit-modal-content .d-flex {
    margin-top: 1.5rem;
}

.edit-modal-content .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.edit-modal-content .btn-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.edit-modal-content .btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.edit-modal-content .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.edit-modal-content .btn-secondary:hover {
    background-color: #5a6268;
}

/* Responsive Edit Modal */
@media (max-width: 768px) {
    .edit-modal-content {
        min-width: auto;
        width: 90%;
        padding: 1.5rem;
    }
    
    .editable:hover::after {
        top: -3px;
        right: -3px;
        font-size: 10px;
        padding: 1px 4px;
    }
}

/* ========================================
   MEDIATION PAGE STYLES
   ======================================== */

/* Mediation Hero Section */
.mediation-hero-section {
    background: linear-gradient(135deg, #1a4a5c 0%, #2d6a7d 100%);
    color: white;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.mediation-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mediation-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.mediation-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.mediation-hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #f4d03f;
    color: #1a4a5c;
    border: none;
    transition: all 0.3s ease;
}

.mediation-hero-buttons .btn:hover {
    background: #e6c537;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}

.mediation-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Mediation Platform Section */
.mediation-platform-section {
    background: #ffffff;
    padding: 100px 0;
}

.mediation-platform-header {
    text-align: center;
    margin-bottom: 80px;
}

.mediation-platform-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1.5rem;
}

.mediation-platform-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mediation-feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mediation-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mediation-feature-image {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.mediation-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 15px;
}

.mediation-feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mediation Testimonials Section */
.mediation-testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.mediation-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.mediation-testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1rem;
}

.mediation-testimonials-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.mediation-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.mediation-testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
    border: none;
    padding: 0;
}

.mediation-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mediation-author-name {
    font-weight: 600;
    color: #1a4a5c;
    font-size: 1.1rem;
}

.mediation-author-title {
    color: #666;
    font-size: 1rem;
}

.mediation-testimonial-image {
    text-align: center;
}

.mediation-testimonial-image img {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.mediation-company-name {
    font-weight: 600;
    color: #1a4a5c;
    font-size: 1.1rem;
}

/* Mediation Networks Section */
.mediation-networks-section {
    background: linear-gradient(135deg, #1a4a5c 0%, #2d6a7d 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mediation-networks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23network-grid)"/></svg>');
    opacity: 0.5;
}

.mediation-networks-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mediation-networks-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mediation-networks-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Networks Slider Container */
.networks-slider-container {
    position: relative;
    z-index: 1;
    padding: 0 50px;
    margin: 0 auto;
    max-width: 1400px;
}

.networksSwiper {
    padding: 30px 0 60px 0;
}

.networksSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-logo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
}

.network-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.network-logo-card:hover .network-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Networks Slider Navigation */
.networksSwiper .swiper-button-next,
.networksSwiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.networksSwiper .swiper-button-next:hover,
.networksSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.networksSwiper .swiper-button-next::after,
.networksSwiper .swiper-button-prev::after {
    font-size: 20px;
    color: white;
    font-weight: 700;
}

/* Networks Slider Pagination */
.networksSwiper .swiper-pagination {
    bottom: 20px;
}

.networksSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.networksSwiper .swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

/* Mediation Contact Section */
.mediation-contact-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.mediation-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1rem;
}

.mediation-contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.mediation-contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mediation-contact-form .form-control:focus {
    border-color: #1a4a5c;
    box-shadow: 0 0 0 0.2rem rgba(26, 74, 92, 0.25);
}

.mediation-contact-form .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #1a4a5c;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.mediation-contact-form .btn:hover {
    background: #2d6a7d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 74, 92, 0.3);
}

/* Responsive Design for Mediation Page */
@media (max-width: 768px) {
    .mediation-hero-title {
        font-size: 3rem;
    }
    
    .mediation-networks-title {
        font-size: 2.5rem;
    }
    
    .mediation-networks-subtitle {
        font-size: 1rem;
    }
    
    .networks-slider-container {
        padding: 0 30px;
    }
    
    .networksSwiper {
        padding: 20px 0 50px 0;
    }
    
    .networksSwiper .swiper-button-next,
    .networksSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .networksSwiper .swiper-button-next::after,
    .networksSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .network-logo-card {
        height: 120px;
        padding: 20px 15px;
    }
    
    .network-logo {
        max-height: 65px;
    }
    
    .mediation-platform-title {
        font-size: 2.5rem;
    }
    
    .mediation-testimonials-title {
        font-size: 2.5rem;
    }
    
    .mediation-networks-title {
        font-size: 2.5rem;
    }
    
    .mediation-testimonial-card {
        padding: 30px;
    }
    
    .mediation-network-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

/* ========================================
   MANAGED AD OPS PAGE STYLES
   ======================================== */

/* Managed Ad Ops Hero Section */
.managed-ad-ops-hero-section {
    background: #ffffff;
    padding: 60px 0 80px;
    position: relative;
}

.managed-ad-ops-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1a4a5c;
}

.managed-ad-ops-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

.managed-ad-ops-hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #1a4a5c;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.managed-ad-ops-hero-buttons .btn:hover {
    background: #2d6a7d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 74, 92, 0.3);
}

.managed-ad-ops-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Monetize Better Section */
.managed-ad-ops-monetize-section {
    background: #1a4a5c;
    color: white;
    padding: 100px 0;
}

.managed-ad-ops-monetize-header {
    text-align: center;
    margin-bottom: 80px;
}

.managed-ad-ops-monetize-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.managed-ad-ops-monetize-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.managed-ad-ops-feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.managed-ad-ops-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.managed-ad-ops-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4a5c, #2d6a7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.managed-ad-ops-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 15px;
}

.managed-ad-ops-feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Helping You Section */
.managed-ad-ops-helping-section {
    background: #ffffff;
    padding: 100px 0;
}

.managed-ad-ops-helping-header {
    text-align: center;
    margin-bottom: 80px;
}

.managed-ad-ops-helping-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1.5rem;
}

.managed-ad-ops-step {
    text-align: center;
    position: relative;
}

.managed-ad-ops-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 40px;
    font-size: 2rem;
    color: #1a4a5c;
    font-weight: bold;
}

@media (max-width: 768px) {
    .managed-ad-ops-step:not(:last-child)::after {
        display: none;
    }
}

.managed-ad-ops-step-number {
    width: 60px;
    height: 60px;
    background: #1a4a5c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.2rem;
    font-weight: 700;
}

.managed-ad-ops-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 15px;
}

.managed-ad-ops-step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Success Stories Section */
.managed-ad-ops-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.managed-ad-ops-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="success-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(26,54,93,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23success-dots)"/></svg>');
    opacity: 0.6;
}

.managed-ad-ops-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.managed-ad-ops-testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a4a5c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.managed-ad-ops-testimonials-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-stories-container {
    position: relative;
    z-index: 1;
}

.managed-ad-ops-testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.managed-ad-ops-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a4a5c 0%, #2d6a7d 100%);
}

.managed-ad-ops-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(26, 54, 93, 0.08);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-img {
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.managed-ad-ops-testimonial-card:hover .company-logo-img {
    opacity: 1;
    transform: scale(1.05);
}

.testimonial-body {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(26, 54, 93, 0.1);
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
    font-style: normal;
    font-weight: 400;
    border: none;
    padding: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(26, 54, 93, 0.08);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    color: #1a4a5c;
    font-size: 1.15rem;
}

.author-position {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* Responsive Design for Managed Ad Ops Page */
@media (max-width: 768px) {
    .managed-ad-ops-hero-title {
        font-size: 3rem;
    }
    
    .managed-ad-ops-monetize-title {
        font-size: 2.5rem;
    }
    
    .managed-ad-ops-helping-title {
        font-size: 2.5rem;
    }
    
    .managed-ad-ops-testimonials-title {
        font-size: 2.5rem;
    }
    
    .managed-ad-ops-testimonials-subtitle {
        font-size: 1rem;
    }
    
    .managed-ad-ops-testimonial-card {
        padding: 40px 30px;
        border-radius: 25px;
    }
    
    .testimonial-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
        text-align: center;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .author-name {
        font-size: 1.05rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
    
    .rating-stars i {
        font-size: 1.1rem;
    }
    
    .managed-ad-ops-step:not(:last-child)::after {
        display: none;
    }
}

/* ========================================
   TURNKEY ADVERTISING PAGE STYLES
   ======================================== */

/* Turnkey Hero Section */
.turnkey-hero-section {
    background: #ffffff;
    padding: 60px 0 80px;
    position: relative;
}

.turnkey-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1a4a5c;
}

.turnkey-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

.turnkey-hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #1a4a5c;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.turnkey-hero-buttons .btn:hover {
    background: #2d6a7d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 74, 92, 0.3);
}

.turnkey-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Turnkey Monetize Section */
.turnkey-monetize-section {
    background: #1a4a5c;
    color: white;
    padding: 100px 0;
}

.turnkey-monetize-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.turnkey-monetize-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.turnkey-monetize-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hands-illustration {
    position: relative;
    width: 300px;
    height: 200px;
}

.hand {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 40px 40px 20px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hand-left {
    left: 20px;
    transform: rotate(-15deg);
}

.hand-right {
    right: 20px;
    transform: rotate(15deg);
}

.coins {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.coin-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.coin-2 {
    top: -20px;
    right: -20px;
    animation-delay: 0.5s;
}

.coin-3 {
    bottom: -20px;
    left: -20px;
    animation-delay: 1s;
}

.coin-4 {
    bottom: -20px;
    right: -20px;
    animation-delay: 1.5s;
}

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

/* Turnkey Steps Section */
.turnkey-steps-section {
    background: #ffffff;
    padding: 100px 0;
}

.turnkey-steps-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 2rem;
}

.turnkey-steps-decoration {
    margin-bottom: 2rem;
}

.wavy-line {
    width: 200px;
    height: 50px;
}

.turnkey-steps-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.turnkey-step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.turnkey-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.turnkey-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a4a5c, #2d6a7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.turnkey-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 10px;
}

.turnkey-step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Turnkey Testimonials Section */
.turnkey-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.turnkey-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="turnkey-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(26,54,93,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23turnkey-dots)"/></svg>');
    opacity: 0.6;
}

.turnkey-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.turnkey-testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a4a5c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.turnkey-testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.turnkey-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a4a5c 0%, #2d6a7d 100%);
}

.turnkey-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Turnkey Page */
@media (max-width: 768px) {
    .turnkey-hero-title {
        font-size: 3rem;
    }
    
    .turnkey-monetize-title {
        font-size: 2.5rem;
    }
    
    .turnkey-steps-title {
        font-size: 2.5rem;
    }
    
    .turnkey-testimonials-title {
        font-size: 2.5rem;
    }
    
    .turnkey-testimonial-card {
        padding: 40px 30px;
        border-radius: 25px;
    }
    
    .testimonial-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
        text-align: center;
    }
    
    .turnkey-step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .turnkey-step-icon {
        margin: 0 auto;
    }
    
    .hands-illustration {
        width: 250px;
        height: 150px;
    }
    
    .hand {
        width: 60px;
        height: 90px;
    }
    
    .coin {
        width: 30px;
        height: 30px;
    }
}

/* ========================================
   LOOMIT PAGE STYLES
   ======================================== */

/* Loomit Hero Section */
.loomit-hero-section {
    background: #ffffff;
    padding: 60px 0 80px;
    position: relative;
}

.loomit-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1a4a5c;
}

.loomit-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

.loomit-hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #1a4a5c;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.loomit-hero-buttons .btn:hover {
    background: #2d6a7d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 74, 92, 0.3);
}

.loomit-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Loomit Features Section */
.loomit-features-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.loomit-features-header {
    text-align: center;
    margin-bottom: 80px;
}

.loomit-features-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1.5rem;
}

.loomit-features-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.loomit-feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.loomit-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.loomit-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4a5c, #2d6a7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.loomit-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 15px;
}

.loomit-feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Loomit How It Works Section */
.loomit-how-it-works-section {
    background: #ffffff;
    padding: 100px 0;
}

.loomit-how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.loomit-how-it-works-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a4a5c;
    margin-bottom: 1.5rem;
}

.loomit-how-it-works-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.loomit-step {
    text-align: center;
    position: relative;
}

.loomit-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 40px;
    font-size: 2rem;
    color: #1a4a5c;
    font-weight: bold;
}

@media (max-width: 768px) {
    .loomit-step:not(:last-child)::after {
        display: none;
    }
}

.loomit-step-number {
    width: 60px;
    height: 60px;
    background: #1a4a5c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
}

.loomit-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4a5c;
    margin-bottom: 15px;
}

.loomit-step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Loomit Testimonials Section */
.loomit-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.loomit-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="loomit-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(26,54,93,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23loomit-dots)"/></svg>');
    opacity: 0.6;
}

.loomit-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.loomit-testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a4a5c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.loomit-testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.loomit-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a4a5c 0%, #2d6a7d 100%);
}

.loomit-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #1a4a4a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.4;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

/* Story Section */
.about-story-section {
    background: white;
    padding: 100px 0;
}

.story-content {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d1e7dd 100%);
    padding: 60px 50px;
    border-radius: 30px;
    border: 1px solid rgba(26, 54, 93, 0.08);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.about-mission-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--dark-blue) 0%, #2c5282 100%);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Values Section */
.about-values-section {
    background: white;
    padding: 100px 0;
}

.value-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d1e7dd 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,2 L28,8 L28,22 L15,28 L2,22 L2,8 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.5;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d1e7dd 100%);
    padding: 100px 0;
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 180px;
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: #2c5282;
    border-color: #2c5282;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.cta-buttons .btn-outline-primary {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
    background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-text {
        font-size: 1.05rem;
    }
    
    .mission-card {
        padding: 40px 30px;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .mission-title {
        font-size: 1.7rem;
    }
    
    .mission-text {
        font-size: 1.05rem;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .stat-box {
        padding: 40px 25px;
    }
    
    .stat-box .stat-number {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #1a4a4a 100%);
    color: white;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.contact-card {
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.08);
}

.contact-page-form .form-label {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-page-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-page-form .form-control:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.15);
    outline: none;
}

.contact-page-form .btn-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--dark-blue);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.contact-page-form .btn-primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 80px 0;
}

.info-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d1e7dd 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.08);
    height: 100%;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.info-text {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   LEGAL PAGES STYLES (TERMS & PRIVACY)
   ======================================== */

/* Legal Hero Section */
.legal-hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2c5282 100%);
    color: white;
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,0 L15,30 M0,15 L30,15" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
    opacity: 0.3;
}

.legal-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.legal-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Legal Content Section */
.legal-content-section {
    background: #ffffff;
    padding: 100px 0;
}

.legal-content {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--dark-blue);
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Responsive Design for Legal & Contact Pages */
@media (max-width: 768px) {
    .contact-hero-title,
    .legal-hero-title {
        font-size: 2.8rem;
    }
    
    .contact-hero-subtitle,
    .legal-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-card,
    .legal-content {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.2rem;
    }
}

/* Responsive Design for Loomit Page */
@media (max-width: 768px) {
    .loomit-hero-title {
        font-size: 3rem;
    }
    
    .loomit-features-title {
        font-size: 2.5rem;
    }
    
    .loomit-how-it-works-title {
        font-size: 2.5rem;
    }
    
    .loomit-testimonials-title {
        font-size: 2.5rem;
    }
    
    .loomit-testimonial-card {
        padding: 40px 30px;
        border-radius: 25px;
    }
    
    .loomit-step:not(:last-child)::after {
        display: none;
    }
}
