/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: #f8fafc;
}

.section-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.section-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-white { color: white !important; }
.text-light { color: rgba(255, 255, 255, 0.8) !important; }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.logo-text h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #2c3e50;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-left: 4px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

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

.btn-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 18px 35px;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 16px 33px;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-list i {
    color: #27ae60;
    font-size: 1rem;
}

.values-section {
    margin-top: 30px;
}

.values-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.value-item h5 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.value-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Founder Section */
.founder-section {
    display: flex;
    justify-content: center;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.founder-image {
    position: relative;
}

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #3498db;
}

.founder-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.founder-info h4 {
    color: #3498db;
    margin-bottom: 15px;
}

.founder-credentials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.credential {
    background: #ecf0f1;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #2c3e50;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card.professional {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card.professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #3498db;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.service-title-section h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.service-subtitle {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.service-description {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-item i {
    color: #27ae60;
    width: 16px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-service.featured {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Stats Section */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card.modern {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card.modern:hover {
    transform: translateY(-5px);
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-content p {
    color: #7f8c8d;
    margin: 0;
}

/* Pillars Section */
.pillars-grid.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pillar-card.modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pillar-card.modern:hover {
    transform: translateY(-5px);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.pillar-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pillar-features {
    list-style: none;
    margin-top: 20px;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pillar-features i {
    color: #27ae60;
}

/* CTA Section */
.cta-section.modern {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #7f8c8d;
    margin: 0;
}

.contact-form.modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.input-field textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary-form {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

/* Contact Info Cards */
.info-card.modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.info-header i {
    color: #3498db;
    font-size: 1.3rem;
}

.info-header h4 {
    color: #2c3e50;
    margin: 0;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-method:hover {
    background: #ecf0f1;
    transform: translateX(5px);
}

.contact-method.whatsapp:hover {
    background: #e8f5e8;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-method.whatsapp .method-icon {
    background: #25d366;
}

.method-info {
    flex: 1;
}

.method-info strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 2px;
}

.method-info span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Office Locations */
.office-locations {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.office-location {
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-header i {
    color: #3498db;
}

.location-header h5 {
    color: #2c3e50;
    margin: 0;
}

.location-details p {
    margin-bottom: 15px;
    color: #5a6c7d;
}

.location-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Business Hours */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hours-section h5 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: #2c3e50;
    font-weight: 500;
}

.time {
    color: #7f8c8d;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.support-item i {
    color: #27ae60;
    width: 16px;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #c3e6cb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-message:hover {
    background: #c8e6c9;
}

/* Error Message */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #f1aeb5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-message:hover {
    background: #f1c2c7;
}

.error-message i {
    color: #dc3545;
}

/* Fallback Contact Options */
.fallback-contact {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.fallback-header {
    text-align: center;
    margin-bottom: 20px;
}

.fallback-header h4 {
    color: #495057;
    margin-bottom: 8px;
}

.fallback-header p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.fallback-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fallback-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
}

.fallback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.fallback-btn.email {
    border-left: 4px solid #007bff;
}

.fallback-btn.email:hover {
    background: #f8f9ff;
    border-left-color: #0056b3;
}

.fallback-btn.whatsapp {
    border-left: 4px solid #25d366;
}

.fallback-btn.whatsapp:hover {
    background: #f0fff4;
    border-left-color: #1bd85d;
}

.fallback-btn.phone {
    border-left: 4px solid #28a745;
}

.fallback-btn.phone:hover {
    background: #f8fff9;
    border-left-color: #1e7e34;
}

.fallback-btn i {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .fallback-methods {
        gap: 10px;
    }
    
    .fallback-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer.modern {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo-text h3 {
    margin: 0;
    color: white;
}

.footer-logo-text span {
    font-size: 0.8rem;
    color: #bdc3c7;
}

.footer-description {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
}

.footer-contact-item i {
    color: #3498db;
    width: 16px;
}

.footer-contact-item a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-btn.primary {
    background: #3498db;
    color: white;
}

.footer-btn.whatsapp {
    background: #25d366;
    color: white;
}

.footer-btn:hover {
    transform: translateY(-2px);
}

.office-info {
    color: #bdc3c7;
}

.office-info p {
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badge {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 15px;
        left: 15px;
        background: white;
        box-shadow: 0 8px 24px rgba(44,62,80,0.13);
        border-radius: 16px;
        z-index: 999;
        padding: 30px 20px 20px 20px;
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
        flex-direction: column;
        align-items: flex-start;
        animation: fadeInNav 0.3s;
        box-sizing: border-box;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    .main-nav.nav-open {
        display: flex;
    }
    @keyframes fadeInNav {
        from { opacity: 0; transform: translateY(-20px);}
        to { opacity: 1; transform: translateY(0);}
    }
    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    .nav-cta {
        margin-top: 24px;
        width: 100%;
        text-align: left;
    }
    
    /* Hamburger menu animation */
    .mobile-menu-toggle.open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.open .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        position: fixed;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .header-content {
        padding: 15px 0;
        position: relative;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid.modern {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .input-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .about-card,
    .form-card,
    .info-card.modern {
        padding: 25px;
    }
    
    .service-card.professional {
        padding: 25px;
    }
    
    .cta-card {
        padding: 40px 25px;
    }
    
    /* Additional mobile menu adjustments for very small screens */
    .main-nav {
        right: 10px;
        left: 10px;
        padding: 20px 15px 15px 15px;
        max-width: calc(100vw - 20px);
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
}

/* --- Services Flip Cards --- */
.services-flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  justify-content: center;
}

.flip-card {
  background: none;
  perspective: 1000px;
  min-height: 340px;
  height: 100%;
  position: relative;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  transition: transform 0.7s cubic-bezier(.23,1.24,.21,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 24px 18px;
  backface-visibility: hidden;
  transition: box-shadow 0.3s;
}
.flip-card-front {
  z-index: 2;
}
.flip-card-back {
  transform: rotateY(180deg);
  z-index: 3;
  background: #232946;
  color: #fff;
}
.service-icon-large {
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.service-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #232946;
  margin-bottom: 12px;
  text-align: center;
}
.service-tiny-desc {
  font-size: 0.92rem;
  color: #555b6e;
  margin-bottom: 22px;
  text-align: center;
  min-height: 40px;
}
.btn-learn-more {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  margin-top: auto;
}
.btn-learn-more:hover {
  background: #2980b9;
  transform: translateY(-2px) scale(1.05);
}
.flip-card-back h4 {
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.flip-card-back ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
  font-size: 0.98rem;
  color: #eaeaea;
}
.flip-card-back ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-flip-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
  }
  .flip-card-front, .flip-card-back {
    min-height: 270px;
    padding: 20px 10px 18px 10px;
  }
}
@media (max-width: 600px) {
  .services-flip-grid {
    grid-template-columns: 1fr;
  }
  .flip-card {
    min-height: 240px;
  }
  .flip-card-front, .flip-card-back {
    min-height: 220px;
    padding: 18px 6px 14px 6px;
  }
}

.founder-expertise {
    margin: 12px 0 0 0;
    padding: 0 0 0 18px;
    color: #385170;
    font-size: 0.97rem;
    line-height: 1.6;
}
.founder-expertise li {
    margin-bottom: 5px;
}

.founder-section.side-by-side {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.founder-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
    max-width: 380px;
    width: 100%;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 24px 24px;
    transition: box-shadow 0.22s;
}
.founder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
}
.founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 14px rgba(52,152,219,0.15);
    margin-bottom: 10px;
}
.founder-badge {
    background: #3498db;
    color: #fff;
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-block;
}
.founder-info h3 {
    margin: 0 0 2px 0;
    font-size: 1.22rem;
    font-weight: 700;
    color: #232946;
    text-align: center;
}
.founder-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.04rem;
    font-weight: 500;
    color: #555b6e;
    text-align: center;
}
.founder-info p {
    margin: 0 0 10px 0;
    font-size: 0.98rem;
    color: #222;
    text-align: center;
}
.founder-expertise {
    margin: 10px 0 0 0;
    padding-left: 18px;
    font-size: 0.97rem;
    color: #385170;
    text-align: left;
    width: 100%;
}
.founder-expertise li {
    margin-bottom: 4px;
}
.founder-credentials {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.credential {
    background: #eaf6fb;
    color: #3498db;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 0.92rem;
    margin-bottom: 2px;
    display: inline-block;
}

@media (max-width: 900px) {
    .founder-section.side-by-side {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .founder-card {
        max-width: 98vw;
        min-width: unset;
    }
}