/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2266cc;          /* Brighter blue theme */
    --primary-dark: #1a52a3;
    --primary-light: #4585e6;
    --accent: #ff9500;           /* Orange accent */
    --accent-dark: #e67e00;
    --neutral-dark: #333333;
    --neutral-light: #f7f7f7;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(to right, #2266cc, #4585e6);
    --footer-bg: #0b172e;        /* Much darker blue for footer */
    --footer-text: #ffffff;      /* White text for better contrast */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;  /* This helps with image alignment */
    margin: 0 auto;  /* Center images */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    text-align: center;  /* Center all headings */
}

h1 {
    font-size: 2rem;
    color: var(--white);
}

h2 {
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.5rem;
    margin: 30px 0 20px;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;  /* Center the underline */
    transform: translateX(-50%);  /* Center the underline */
    bottom: 0;
    height: 3px;
    width: 60px;
    background: var(--accent);
    border-radius: 3px;
}

h3 {
    font-size: 1.2rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    text-align: center;  /* Center all paragraph text */
}

/* Header & Navigation */
header {
    background: var(--gradient);
    color: var(--white);
    padding: 30px 0 20px;
    text-align: center;
}

.main-menu {
    margin-top: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero section */
.hero {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 3px 10px var(--shadow);
    text-align: center;  /* Center hero content */
}

/* Products & Services section */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 18px 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 6px;
    margin: 0 auto 12px;  /* Center images */
}

.product-card h3 {
    margin: 8px 0;
    color: var(--primary);
}

.product-card p {
    margin-bottom: 12px;
    text-align: center;
}

.price {
    font-weight: bold;
    color: var(--primary-dark);
    font-size: 1rem;
    margin: 8px 0;
}

/* Services section */
.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 18px 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

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

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 6px;
    margin: 0 auto 12px;  /* Center images */
}

.service-card p {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Contact info styling */
.contact-info {
    padding: 18px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow);
    margin: 18px 0;
    text-align: center;  /* Center all contact info */
}

.whatsapp-icon {
    vertical-align: middle;
    margin-left: 5px;
    display: inline-block;  /* Fix WhatsApp icon display */
}

/* Footer with better contrast */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
}

.footer-section a {
    color: var(--white);
    text-decoration: underline;
}

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

/* Responsive */
@media (min-width: 768px) {
    .services, .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        text-align: center;  /* Keep footer centered on desktop too */
    }
}

/* Booking Form */
.booking-form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px var(--shadow);
    margin: 20px 0;
}

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

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.submit-button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.submit-button:hover {
    background-color: var(--accent-dark);
}

/* Add specific class for WhatsApp icon display */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
}

.whatsapp-link img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    width: 20px;
    height: auto;
}
