/* ===================================
   Your Consultants - Main Stylesheet
   =================================== */

/* CSS Variables - Brand Colors */
:root {
    --primary-navy: #1e3a5f;
    --primary-blue: #2c5282;
    --secondary-cyan: #4da6d6;
    --secondary-light-blue: #5eb3e4;
    --accent-gold: #f5a623;
    --accent-yellow: #fbbf24;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --success-green: #48bb78;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    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: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

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

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--bg-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--secondary-cyan);
    color: var(--bg-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 50%, var(--secondary-cyan) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
}

.hero::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"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-navy);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--primary-navy);
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Services Overview */
.services-overview {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-cyan), var(--secondary-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--secondary-cyan);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary-navy);
}

/* Why Choose Home Section */
.why-choose-home {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-gray);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-cyan));
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 0 4rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--bg-light);
}

/* About Page */
.about-content,
.services-content,
.team-content,
.why-choose-content,
.contact-content {
    padding: 4rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.vision-mission-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.vm-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.vm-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--bg-light);
}

.core-values {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--bg-white);
}

.value-card h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.target-clientele {
    margin: 4rem 0;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.clientele-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 10px;
}

.clientele-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.clientele-item h4 {
    color: var(--primary-navy);
    font-size: 1rem;
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--secondary-cyan), var(--secondary-light-blue));
    border-radius: 15px;
    color: var(--bg-white);
}

.about-cta h3 {
    color: var(--bg-white);
    margin-bottom: 2rem;
}

/* Services Page */
.service-detail {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-gold);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.service-header h2 {
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-header h2 i {
    color: var(--secondary-cyan);
}

.service-intro {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.service-body {
    margin-top: 2rem;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-column h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-list,
.destinations-list,
.service-list-inline {
    list-style: none;
}

.service-list li,
.destinations-list li,
.service-list-inline li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.service-list i,
.destinations-list i,
.service-list-inline i {
    color: var(--success-green);
}

.service-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-list-inline li {
    background: var(--bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
}

.note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 15px;
    color: var(--bg-white);
}

.services-cta h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--bg-light);
    margin-bottom: 2rem;
}

/* Team Page */
.team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-categories {
    display: grid;
    gap: 3rem;
    margin: 4rem 0;
}

.team-category {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.team-category h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.team-category p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tag {
    background: var(--bg-white);
    color: var(--secondary-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.team-collaboration {
    margin: 4rem 0;
}

.collaboration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collab-feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.collab-feature i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.collab-feature h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.collab-feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.team-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--secondary-cyan), var(--secondary-light-blue));
    border-radius: 15px;
    color: var(--bg-white);
}

.team-cta h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.team-cta p {
    color: var(--bg-white);
    margin-bottom: 2rem;
}

/* Why Choose Us Page */
.why-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.reason-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-cyan), var(--secondary-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reason-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.reason-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-gray);
}

.benefits-section {
    margin: 4rem 0;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonials-section {
    margin: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--secondary-cyan);
    font-size: 0.9rem;
}

.why-us-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 15px;
    color: var(--bg-white);
}

.why-us-cta h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.why-us-cta p {
    color: var(--bg-light);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.contact-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--secondary-cyan);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-navy);
}

.contact-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.office-hours {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.office-hours h3 {
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg-white);
    border-radius: 10px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--primary-navy);
}

.hours-item .time {
    color: var(--text-gray);
}

.map-section {
    margin: 4rem 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.map-directions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.map-directions p {
    color: var(--text-gray);
    margin: 0;
}

.quick-contact {
    margin: 4rem 0;
}

.quick-contact-box {
    background: linear-gradient(135deg, var(--secondary-cyan), var(--secondary-light-blue));
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: var(--bg-white);
}

.quick-contact-box h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.quick-contact-box p {
    color: var(--bg-white);
    margin-bottom: 2rem;
}

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

.services-reminder {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.services-reminder h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-tag {
    background: var(--bg-white);
    color: var(--secondary-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.services-link-text {
    margin-top: 1.5rem;
}

.services-link-text a {
    color: var(--primary-navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.services-link-text a:hover {
    color: var(--secondary-cyan);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--secondary-light-blue);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--bg-light);
}

.contact-info i {
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

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

.footer-bottom p {
    color: var(--bg-light);
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--accent-yellow);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--bg-white);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        display: block;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Grids */
    .services-grid,
    .features-grid,
    .reasons-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .vision-mission-section {
        grid-template-columns: 1fr;
    }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Service Detail */
    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .service-number {
        font-size: 2rem;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    /* Contact Buttons */
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    /* Padding adjustments */
    section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .service-card,
    .reason-card,
    .contact-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-buttons,
    .cta-section,
    .footer {
        display: none;
    }
}
