/* c:\xampp\htdocs\nateratravel\naterashow\css\style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --primary: #1A3A5F;
    --primary-light: #2D5A8A;
    --primary-dark: #0A2338;
    --secondary: #FF6B35;
    --secondary-light: #FF8354;
    --secondary-dark: #E04E1B;
    --tertiary: #4EA8DE;
    --accent: #44AF69;
    --light-bg: #F8F9FA;
    --dark-text: #0A2338;
    --gray-text: #627D98;
    --border-color: rgba(26, 58, 95, 0.1);
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(10, 35, 56, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(10, 35, 56, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(10, 35, 56, 0.15);
    --glow-coral: 0 0 20px rgba(255, 107, 53, 0.45);
    --glow-sky: 0 0 20px rgba(78, 168, 222, 0.35);
    
    /* Font Families */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

/* Layout utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-b: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    max-height: 55px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-text);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 58, 95, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 58, 95, 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--glow-coral);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 35, 56, 0.85) 0%, rgba(26, 58, 95, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
    color: var(--secondary);
    display: block;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
}

/* Wave Decoration */
.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-container .shape-fill {
    fill: var(--light-bg);
}

/* Floating Animation */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Services Grid Section */
.services-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 1.5rem auto 0;
}

/* Feature assessment Card */
.featured-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.featured-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 750px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(26, 58, 95, 0.35);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--glow-coral);
}

.featured-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Grid layout for remaining services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-item-horizontal {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-item-horizontal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(78, 168, 222, 0.05) 0%, rgba(26, 58, 95, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item-horizontal:hover {
    transform: translateY(-5px);
    border-color: var(--tertiary);
    box-shadow: var(--shadow-md), 0 5px 15px rgba(78, 168, 222, 0.15);
}

.service-item-horizontal:hover::after {
    opacity: 1;
}

.service-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(78, 168, 222, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-item-horizontal:hover .service-item-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

.service-item-info {
    flex-grow: 1;
    min-width: 0;
    z-index: 2;
}

.service-item-info h4 {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-item-info p {
    font-size: 0.85rem;
    color: var(--gray-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-item-btn {
    padding: 0.45rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    background-color: var(--secondary);
    color: #ffffff;
    z-index: 2;
    flex-shrink: 0;
}

.service-item-horizontal:hover .service-item-btn {
    background-color: var(--secondary-light);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

/* Identity / MVV Section */
.identity-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.identity-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,58,95,0.03) 0%, transparent 70%);
    z-index: 1;
}

.identity-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.03) 0%, transparent 70%);
    z-index: 1;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.identity-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.identity-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    border-color: var(--tertiary);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(78, 168, 222, 0.15);
}

.identity-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(26, 58, 95, 0.05);
    color: var(--primary);
    font-size: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.identity-card:hover .identity-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: #ffffff;
}

.identity-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.identity-card:hover h3 {
    color: var(--secondary);
}

.identity-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

/* Values list styling */
.values-list {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(78, 168, 222, 0.08);
    padding-left: 0.75rem;
}

.value-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    transition: transform 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

.value-title {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.value-desc {
    color: var(--gray-text);
    font-size: 0.85rem;
}

/* About Us Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.03) 0%, rgba(78, 168, 222, 0.06) 100%);
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid #ffffff;
    max-width: 380px;
    aspect-ratio: 1;
}

.about-image-inner img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    display: block;
}

.about-text-wrapper {
    flex: 1.2;
}

.about-tag {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.about-text-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-wrapper p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text-wrapper strong {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary) 0%, var(--tertiary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Contact CTA Section */
.contact-cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 1px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-list i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

/* Floating WhatsApp Widget Styling */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.whatsapp-bubble:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: pulseWidget 2s infinite;
}

@keyframes pulseWidget {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: #ff3b30;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.whatsapp-panel {
    width: 360px;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
    z-index: 1000;
}

.whatsapp-panel.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.whatsapp-panel-header {
    background-color: var(--primary);
    color: #ffffff;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.whatsapp-panel-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: var(--primary) transparent transparent transparent;
}

.whatsapp-avatar-wrapper {
    position: relative;
}

.whatsapp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: #ffffff;
    padding: 2px;
}

.whatsapp-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #4cd964;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.whatsapp-agent-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.whatsapp-agent-info p {
    font-size: 0.75rem;
    opacity: 0.85;
}

.whatsapp-close {
    margin-left: auto;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.whatsapp-close:hover {
    opacity: 1;
}

.whatsapp-panel-body {
    background-color: #efeae2;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 280px;
    overflow-y: auto;
}

.whatsapp-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 0 12px 12px 12px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    position: relative;
}

.whatsapp-msg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #ffffff transparent transparent;
}

.whatsapp-msg-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: var(--gray-text);
    margin-top: 0.25rem;
}

.whatsapp-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-reply-btn {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-reply-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateX(4px);
}

.whatsapp-panel-footer {
    padding: 1rem;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-input-wrapper {
    flex-grow: 1;
    position: relative;
}

.whatsapp-input {
    width: 100%;
    border-radius: 30px;
    border: none;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    outline: none;
}

.whatsapp-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* Responsiveness / Media Queries */

@media (max-width: 1024px) {
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .featured-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .featured-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .about-image-wrapper {
        width: 100%;
    }
    
    .whatsapp-panel {
        width: calc(100vw - 40px);
        right: 20px;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Nav Overlay (JS controlled) */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 35, 56, 0.95);
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.show {
    display: flex;
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
}
