/* =============================================
   DOM-TOM Page - Tropical Vibrant Design
   ============================================= */

/* Hero Section - Tropical Gradient */
.domtom-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 30%, #10b981 70%, #22c55e 100%);
    position: relative;
    overflow: hidden;
}

.domtom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.domtom-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f8fafc;
    border-radius: 50% 50% 0 0;
}

.domtom-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.domtom-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.domtom-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.domtom-hero h1 span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domtom-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Hero Stats */
.domtom-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.domtom-stat {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 20px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.domtom-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.domtom-stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Banner */
.domtom-cta-banner {
    padding: 20px 0;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.domtom-cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.domtom-cta-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

.domtom-cta-banner-text i {
    font-size: 1.25rem;
}

.domtom-cta-banner .btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.domtom-cta-banner .btn-banner:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Services Section */
.domtom-services {
    padding: 100px 0;
    background: #f8fafc;
}

.domtom-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.domtom-services .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domtom-services h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.domtom-services h2 span {
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domtom-services .section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-card.blue::before { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.service-card.purple::before { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.service-card.green::before { background: linear-gradient(135deg, #10b981, #22c55e); }

.service-card.featured {
    border: 2px solid #8b5cf6;
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.service-card .popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 0 0 10px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #fff;
}

.service-icon.blue { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.service-icon.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.service-icon.green { background: linear-gradient(135deg, #10b981, #22c55e); }

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-tag.blue { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.service-tag.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.service-tag.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.service-price {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.service-price-value {
    font-size: 1.75rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.service-price-value.blue { color: #0ea5e9; }
.service-price-value.purple { color: #8b5cf6; }
.service-price-value.green { color: #10b981; }

.service-price-note {
    font-size: 0.85rem;
    color: #64748b;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-btn.blue { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.service-btn.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.service-btn.green { background: linear-gradient(135deg, #10b981, #22c55e); }

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Territories Section */
.domtom-territories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.domtom-territories .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.domtom-territories .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domtom-territories h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.domtom-territories h2 span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Territory Cards */
.territories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.territory-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.territory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.territory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.territory-card.martinique::before { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.territory-card.guadeloupe::before { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.territory-card.guyane::before { background: linear-gradient(135deg, #10b981, #22c55e); }
.territory-card.reunion::before { background: linear-gradient(135deg, #ef4444, #f87171); }
.territory-card.mayotte::before { background: linear-gradient(135deg, #f97316, #fb923c); }
.territory-card.caledonie::before { background: linear-gradient(135deg, #8b5cf6, #a855f7); }

.territory-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.territory-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: center;
}

.territory-timezone {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.territory-cities {
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.territory-cities.martinique { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.territory-cities.guadeloupe { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.territory-cities.guyane { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.territory-cities.reunion { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.territory-cities.mayotte { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.territory-cities.caledonie { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.territory-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.territory-btn.martinique { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.territory-btn.guadeloupe { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.territory-btn.guyane { background: linear-gradient(135deg, #10b981, #22c55e); }
.territory-btn.reunion { background: linear-gradient(135deg, #ef4444, #f87171); }
.territory-btn.mayotte { background: linear-gradient(135deg, #f97316, #fb923c); }
.territory-btn.caledonie { background: linear-gradient(135deg, #8b5cf6, #a855f7); }

.territory-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Why Us Section */
.domtom-why {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
}

.domtom-why .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.domtom-why .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domtom-why h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.domtom-why h2 span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domtom-why .section-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.why-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

.why-card.gold::before { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.why-card.blue::before { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.why-card.green::before { background: linear-gradient(135deg, #10b981, #22c55e); }
.why-card.purple::before { background: linear-gradient(135deg, #8b5cf6, #a855f7); }

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: #fff;
}

.why-icon.gold { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.why-icon.blue { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.why-icon.green { background: linear-gradient(135deg, #10b981, #22c55e); }
.why-icon.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.why-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.why-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.why-tag.gold { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border-color: rgba(245, 158, 11, 0.3); }
.why-tag.blue { background: rgba(14, 165, 233, 0.2); color: #38bdf8; border-color: rgba(14, 165, 233, 0.3); }
.why-tag.green { background: rgba(16, 185, 129, 0.2); color: #34d399; border-color: rgba(16, 185, 129, 0.3); }
.why-tag.purple { background: rgba(139, 92, 246, 0.2); color: #a78bfa; border-color: rgba(139, 92, 246, 0.3); }

/* Stats Bar */
.domtom-stats-bar {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.domtom-stats-bar h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-value.gold { color: #fbbf24; }
.stat-value.blue { color: #38bdf8; }
.stat-value.green { color: #34d399; }
.stat-value.purple { color: #a78bfa; }

.stat-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* FAQ Section */
.domtom-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.domtom-faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.domtom-faq .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domtom-faq h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.domtom-faq h2 span {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Items */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.faq-icon.blue { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.faq-icon.green { background: linear-gradient(135deg, #10b981, #22c55e); }
.faq-icon.gold { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.faq-icon.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.faq-icon.red { background: linear-gradient(135deg, #ef4444, #f87171); }

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-chevron {
    color: #64748b;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 28px 24px 89px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.faq-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faq-tag.blue { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.faq-tag.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.faq-tag.gold { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.faq-tag.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.faq-tag.red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* CTA Section */
.domtom-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 30%, #10b981 70%, #22c55e 100%);
    text-align: center;
    position: relative;
}

.domtom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.domtom-cta .container {
    position: relative;
    z-index: 2;
}

.domtom-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.domtom-cta p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: #0ea5e9;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}

.trust-badges i {
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .territories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .domtom-hero {
        padding: 110px 0 70px;
    }
    
    .domtom-stats {
        gap: 20px;
    }
    
    .domtom-stat {
        padding: 16px 20px;
    }
    
    .domtom-stat-number {
        font-size: 2rem;
    }
    
    .services-grid,
    .territories-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .domtom-cta-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-answer-content {
        padding-left: 28px;
    }
}

@media (max-width: 480px) {
    .domtom-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .domtom-stat {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
