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

:root {
    --color-white: #ffffff;
    --color-light-grey: #f5f6fa;
    --color-grey: #dfe4ea;
    --color-dark-grey: #57606f;
    --color-black: #2f3542;
    --color-text: #2f3542;
    --color-text-light: #747d8c;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--color-black);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact a {
    color: var(--color-white);
    text-decoration: none;
    margin-left: 20px;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main .container nav {
    margin-left: auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    max-width: 200px;
    object-fit: contain;
}

.header-button {
    margin-left: 30px;
}

.header-button .btn {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #1c5a6a 0%, #26b3af 100%);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 90, 106, 0.2);
}

nav {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--color-dark-grey);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: inherit;
}

.hero {
    padding: 60px 0 120px;
    text-align: left;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.hero-left {
    flex: 2;
}

.hero-right {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
}

.hero p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.hero-contact-form h3 {
    margin-bottom: 15px;
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
}

.hero-form .form-group {
    margin-bottom: 12px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-grey);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.hero-form button {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 90, 106, 0.2);
    color: white !important;
}

.hero[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero[style*="background-image"] > .container {
    position: relative;
    z-index: 2;
}

.hero[style*="background-image"] h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero[style*="background-image"] p {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
}

.hero p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--color-black);
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    border-radius: 2px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-black);
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--color-white);
}

.footer-logo {
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-logo-img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo h4 {
    margin: 0;
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

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

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transform: translateY(-2px);
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

.services-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--color-white);
}

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

.services-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.highlight-text {
    color: var(--color-accent);
}

.services-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-main {
    padding: 0;
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-image-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-grey);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-image-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.service-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.service-placeholder-icon {
    font-size: 64px;
    opacity: 0.3;
}

.service-image-card-content {
    padding: 25px;
}

.service-image-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-image-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8em; /* 3 lines * 1.6 line-height */
}

.services-subscribe-section {
    padding: 40px 0;
}

.services-subscribe-content {
    background: var(--color-primary);
    padding: 50px 60px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.services-subscribe-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L50 50 L0 100 L50 100 L100 50 L50 0 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.services-subscribe-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.services-subscribe-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.services-subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.services-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.services-subscribe-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe-services {
    padding: 14px 35px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe-services:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.subscribe-form-message {
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.services-pricing-section {
    padding: 60px 0;
    background: var(--color-light-grey);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.pricing-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid var(--color-grey);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-featured {
    border-color: var(--color-accent);
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--color-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.pricing-featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-amount {
    margin-bottom: 20px;
}

.pricing-amount .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.pricing-amount .price {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    min-height: 50px;
    color: var(--color-primary);
}

.pricing-featured h3 {
    color: white;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-text);
}

.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.btn-pricing-book {
    width: 100%;
    padding: 14px 20px;
    background: var(--color-button-bg);
    color: var(--color-button-text);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-pricing-book:hover {
    background: var(--color-button-hover-bg);
    transform: translateY(-2px);
}

.pricing-featured .btn-pricing-book {
    background: white;
    color: var(--color-primary);
}

.pricing-featured .btn-pricing-book:hover {
    background: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid var(--color-grey);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--color-black);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.3;
    height: 33px;
    overflow: hidden;
    position: relative;
}

.service-card p::after {
    display: none;
}

.service-card a {
    color: var(--color-black);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.service-card a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.service-card a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.service-card a:hover::after {
    width: 100%;
}

.stats-section {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stat-item p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

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

.service-link {
    color: var(--color-black);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.service-link:hover::after {
    width: 100%;
}

/* CTA Section Button - Home Sections Style */
.cta-section .btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #1c5a6a 0%, #26b3af 100%);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 90, 106, 0.2);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--color-light-grey);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.blog-excerpt {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-black);
}

.contact-item a {
    color: var(--color-text-light);
    text-decoration: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-grey);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-dark-grey);
}

footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff !important;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-grey);
    padding: 10px 0;
    z-index: 1000;
}

.mobile-nav-grid {
    display: flex;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    font-size: 12px;
}

.mobile-nav-item span:first-child {
    font-size: 24px;
    margin-bottom: 4px;
}

.service-detail {
    padding: 60px 0;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h1 {
    font-size: 42px;
    margin-bottom: 0;
}

.service-short-description {
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-short-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
    text-align: left;
}

.service-detail-image-top {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.service-content-with-image.image-left {
    grid-template-columns: 1fr 1.5fr;
}

.service-content-with-image.image-right {
    grid-template-columns: 1.5fr 1fr;
}

.service-content-with-image.image-right .service-image-side {
    order: 2;
}

.service-image-side img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-content-side h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.service-overview {
    background: var(--color-light-grey);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-sections {
    margin: 60px 0;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.content-section:not(:last-child) {
    border-bottom: 1px solid var(--color-grey);
}

.content-section.image-left {
    grid-template-columns: 1fr 1.5fr;
}

.content-section.image-right {
    grid-template-columns: 1.5fr 1fr;
}

.content-section.image-right .section-image {
    order: 2;
}

.content-section.image-right .section-content {
    order: 1;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.section-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.section-text p {
    margin-bottom: 15px;
}

.process-steps {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.documents-list {
    background: var(--color-light-grey);
    padding: 30px;
    border-radius: 8px;
}

.documents-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.documents-list li:before {
    content: "✓ ";
    font-weight: 700;
    margin-right: 8px;
}

.faqs-section {
    margin: 60px 0;
}

.faqs-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-grey);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--color-white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-light-grey);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-light-grey);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.8;
}

.service-cta {
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.service-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-cta .btn {
    margin: 0 10px;
}

.subscribe-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.subscribe-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-content {
    margin-bottom: 40px;
}

.subscribe-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.subscribe-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.subscribe-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.subscribe-input-group input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    font-size: 16px;
    background: white;
    color: var(--color-black);
}

.subscribe-input-group input::placeholder {
    color: #999;
}

.subscribe-input-group input:focus {
    outline: none;
}

.btn-subscribe {
    padding: 18px 40px;
    background: var(--color-black);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.subscribe-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.subscribe-message {
    margin-top: 20px;
}

.subscribe-message > div {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
}

.contact-cta-section {
    background: var(--color-white);
}

.contact-cta-box {
    background: var(--color-black);
    color: var(--color-white);
    padding: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.contact-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.contact-cta-actions .btn {
    white-space: nowrap;
}

.contact-cta-actions .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.contact-cta-actions .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.blog-detail {
    padding: 60px 0;
}

.blog-detail-header {
    margin-bottom: 40px;
}

.blog-detail-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.blog-detail-meta {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.blog-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
}

.blog-detail-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    /* Hide desktop navigation completely */
    .header-main nav {
        display: none !important;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block !important;
        font-size: 24px;
        padding: 10px;
    }
    
    /* Hide header button on mobile */
    .header-button {
        display: none !important;
    }
    
    /* Sticky header */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Compact header */
    .header-main {
        padding: 5px 0 !important;
    }
    
    /* Hide header-top on mobile */
    .header-top {
        display: none !important;
    }
    
    .header-main .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Larger logo */
    .logo-img {
        height: 45px !important;
        max-width: 180px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Ensure logo link is visible */
    .logo {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Adjust hero for mobile */
    .hero {
        padding: 60px 0 60px 0 !important;
        text-align: center !important;
    }
    
    .hero-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .hero h1 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .hero p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        display: flex !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
    
    .hero .btn {
        display: flex !important;
        width: auto !important;
        margin: 0 !important;
        padding: 10px 16px !important;
        font-size: 14px !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-contact-form {
        padding: 20px !important;
        max-width: 100% !important;
    }
    
    .hero-contact-form h3 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-form input,
    .hero-form select {
        padding: 12px 14px !important;
        font-size: 16px !important;
    }
    
    .hero-form button {
        padding: 12px 16px !important;
        font-size: 16px !important;
    }
}

/* Get in Touch Section */
.get-in-touch-section {
    padding: 60px 0;
    background: var(--color-light-grey);
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.get-in-touch-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .get-in-touch-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-item {
        padding: 20px;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-info h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .contact-info p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Our Services Section - Overlapping Hero */
.our-services-section {
    margin-top: -120px;
    padding: 80px 0 60px;
    position: relative;
    z-index: 10;
}

.our-services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.card-subtitle {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.service-card .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    max-width: fit-content;
}

.service-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 90, 106, 0.2);
    color: white !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .our-services-section {
        margin-top: -80px;
        padding: 60px 0 40px;
    }
    
    .our-services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        display: grid;
    }
    
    .service-card {
        padding: 30px 25px;
        margin: 0;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
        margin-bottom: 20px;
        min-height: 60px;
    }
    
    .service-card .btn-primary {
        padding: 10px 16px;
        font-size: 12px;
        max-width: fit-content;
    }
}

/* Consultancy Industries Section */
.consultancy-industries-section {
    padding: 40px 0;
    background: white;
}

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

.consultancy-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.consultancy-header .section-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateX(5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: 0;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: background-color 0.3s ease;
}

.industry-item:hover .industry-icon {
    background: var(--color-secondary);
}

.industry-content {
    flex: 1;
}

.industry-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
}

.industry-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consultancy-industries-section {
        padding: 30px 0;
    }
    
    .consultancy-header {
        margin-bottom: 40px;
    }
    
    .consultancy-header .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .consultancy-header .section-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .industry-item {
        gap: 15px;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }
    
    .industry-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .industry-description {
        font-size: 15px;
    }
}

/* Single column layout - force block display */
@media (max-width: 768px) {
    .services-grid,
    .blog-grid {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Responsive service cards */
    .service-card {
        display: block !important;
        width: calc(100% - 30px) !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin: 0 0 15px 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    /* Limit service card description to 1.5 lines */
    .service-card p {
        color: var(--color-text) !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        height: 33px !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .service-card p::after {
        display: none !important;
    }
    
    /* Show mobile bottom navigation */
    .mobile-bottom-nav {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        border-top: 1px solid #ddd !important;
        z-index: 1000 !important;
    }
    
    /* Add space for fixed header and bottom nav */
    body {
        padding-top: 50px !important;
        padding-bottom: 70px !important;
        margin: 0 !important;
    }
    
    /* Move live chat widgets above mobile bottom navigation */
    #tawk-bubble-container,
    .tawk-min-container,
    #tidio-chat,
    .intercom-launcher-frame,
    .crisp-client,
    .drift-frame-controller,
    #launcher,
    #hubspot-messages-iframe-container,
    iframe[title*="chat"],
    iframe[id*="chat"],
    iframe[id*="tawk"],
    iframe[id*="livechat"],
    div[id*="chat-widget"],
    div[class*="chat-widget"] {
        bottom: 80px !important;
        margin-bottom: 0 !important;
    }
    
    /* Specific for LiveChat.com */
    #chat-widget-container {
        bottom: 80px !important;
    }
    
    /* Hide WhatsApp floating button on mobile */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Phone Popup Styles */
    .phone-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 20px;
        box-sizing: border-box;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .phone-popup-content {
        background: white;
        border-radius: 16px;
        max-width: 400px;
        width: 100%;
        max-height: 80vh;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from { 
            transform: translateY(30px);
            opacity: 0;
        }
        to { 
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .phone-popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-bottom: none;
    }
    
    .phone-popup-header h3 {
        margin: 0;
        color: white;
        font-size: 22px;
        font-weight: 600;
    }
    
    .phone-popup-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: white;
        padding: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        line-height: 1;
    }
    
    .phone-popup-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    .phone-popup-body {
        padding: 0;
        max-height: calc(80vh - 80px);
        overflow-y: auto;
    }
    
    .phone-number-item {
        display: block;
        padding: 12px 25px;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .phone-number-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--color-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .phone-number-item:hover {
        background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.05), transparent);
        padding-left: 30px;
    }
    
    .phone-number-item:hover::before {
        transform: scaleY(1);
    }
    
    .phone-number-item:last-child {
        border-bottom: none;
    }
    
    .phone-label {
        font-weight: 600;
        color: var(--color-primary);
        font-size: 15px;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
    }
    
    .phone-label::before {
        content: '📞';
        margin-right: 8px;
        font-size: 16px;
    }
    
    .phone-number {
        color: var(--color-secondary);
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    /* Admin Phone Number Management */
    .phone-number-item {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .phone-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .phone-item-header strong {
        color: #495057;
        font-size: 16px;
    }
    
    .btn-remove-phone {
        background: #dc3545;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        transition: background-color 0.3s ease;
    }
    
    .btn-remove-phone:hover {
        background: #c82333;
    }
    
    .btn-add-phone {
        background: #28a745;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        margin-top: 10px;
        transition: background-color 0.3s ease;
    }
    
    .btn-add-phone:hover {
        background: #218838;
    }
    
    /* Admin WhatsApp Number Management */
    .whatsapp-number-item {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .whatsapp-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .whatsapp-item-header strong {
        color: #495057;
        font-size: 16px;
    }
    
    .btn-remove-whatsapp {
        background: #dc3545;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        transition: background-color 0.3s ease;
    }
    
    .btn-remove-whatsapp:hover {
        background: #c82333;
    }
    
    .btn-add-whatsapp {
        background: #25D366;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        margin-top: 10px;
        transition: background-color 0.3s ease;
    }
    
    .btn-add-whatsapp:hover {
        background: #128C7E;
    }
    
    /* Responsive containers - full width */
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Ensure body and html are full width */
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Responsive sections */
    .section {
        padding: 30px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .section-header {
        width: 100% !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    .section-header h2 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .section-header p {
        font-size: 14px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix services grid specifically */
    .services-grid {
        display: block !important;
        width: 100% !important;
    }
    
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
    }
    
    .service-card h3,
    .service-card p,
    .service-card a {
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    
    /* Compact footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    .footer-section h4 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    /* Hide desktop elements */
    .header-top {
        display: none !important;
    }
    
    /* Center footer social buttons on mobile */
    .footer-social {
        justify-content: center !important;
    }
    
    /* Compact subscribe section on mobile */
    .services-subscribe-section {
        padding: 30px 0 !important;
    }
    
    .services-subscribe-content {
        padding: 30px 25px !important;
    }
    
    .services-subscribe-content h2 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    
    .services-subscribe-content p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }
    
    .services-subscribe-form {
        flex-direction: column !important;
        gap: 10px !important;
        max-width: 100% !important;
    }
    
    .services-subscribe-form input {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }
    
    .btn-subscribe-services {
        padding: 12px 20px !important;
        font-size: 14px !important;
        width: 100% !important;
    }
    
    /* Compact CTA section on mobile */
    .cta-section {
        padding: 30px 0 !important;
    }
    
    .cta-section h2 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    
    .cta-section p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }
    
    .cta-section .btn {
        display: inline-block !important;
        padding: 12px 25px !important;
        background: linear-gradient(135deg, #1c5a6a 0%, #26b3af 100%) !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 2px !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        transition: all 0.3s ease !important;
        border: none !important;
        cursor: pointer !important;
    }
    
    .cta-section .btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(28, 90, 106, 0.2) !important;
    }
    
    /* Compact stats section on mobile */
    .stats-section {
        padding: 20px 0 !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        padding: 0 15px !important;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .stat-item h3 {
        font-size: 18px !important;
        margin-bottom: 4px !important;
        line-height: 1 !important;
    }
    
    .stat-item p {
        font-size: 10px !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        max-height: 20px !important;
    }
    
    /* Break text only on mobile */
    .stat-item .mobile-break {
        display: block;
    }
    
    @media (min-width: 769px) {
        .stat-item .mobile-break {
            display: inline;
        }
    }
    
    /* Insert line break only on mobile */
    @media (max-width: 768px) {
        .stat-item:nth-child(3) .mobile-break::after {
            content: "\A";
            white-space: pre;
        }
    }
}
