:root {
    /* Primary color palette - 5 eco-friendly colors */
    --ocean-blue: #295b81;
    --ocean-blue-light: #3e7099;
    --ocean-blue-dark: #1d394b;
    
    --sea-green: #50958b;
    --sea-green-light: #5da490;
    --sea-green-dark: #36675b;
    
    --sand-beige: #dcbd8a;
    --sand-beige-light: #e4d1a0;
    --sand-beige-dark: #c19b7b;
    
    --coral-orange: #ff6645;
    --coral-orange-light: #ee6e60;
    --coral-orange-dark: #fc7b44;
    
    --wave-foam: #f0f8ff;
    --wave-foam-light: #ffffff;
    --wave-foam-dark: #d8e9ff;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --line-height-base: 1.6;
}

/* Base styles */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--ocean-blue-dark);
    background-color: var(--wave-foam);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.navbar-nav .nav-link {
    color: var(--ocean-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--sea-green);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--wave-foam) 0%, var(--wave-foam-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-decorative {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--sea-green);
    opacity: 0.1;
}

.hero-decorative:nth-child(1) {
    top: 10%;
    right: 10%;
}

.hero-decorative:nth-child(2) {
    bottom: 20%;
    left: 15%;
    background: var(--coral-orange);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--ocean-blue-dark);
    font-size: 1.1rem;
}

/* Cards */
.custom-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(36, 82, 103, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(54, 121, 147, 0.15);
}

.custom-card .card-body {
    padding: 2rem;
}

/* Services */
.service-card {
    text-align: center;
    background: var(--wave-foam-light);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-orange);
    margin-top: 1rem;
}

/* Features */
.feature-card {
    background: var(--sea-green);
    color: white;
    text-align: center;
}

.feature-card h5 {
    color: white;
}

/* Price Plans */
.price-card {
    background: var(--wave-foam-light);
    border: 2px solid var(--sand-beige);
    text-align: center;
}

.price-card.featured {
    border-color: var(--coral-orange);
    transform: scale(1.05);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

/* Team */
.team-card {
    text-align: center;
    background: var(--wave-foam-light);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--sand-beige);
}

/* Reviews */
.review-card {
    background: var(--sand-beige-light);
    border-left: 4px solid var(--sea-green);
}

/* FAQ */
.faq-card {
    background: var(--wave-foam-light);
    border-left: 3px solid var(--ocean-blue);
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--wave-foam-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(30, 74, 102, 0.10);
}

.form-control {
    border: 2px solid var(--sand-beige);
    border-radius: 10px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--sea-green);
    box-shadow: 0 0 0 0.2rem rgba(86, 154, 136, 0.25);
}

.btn-primary {
    background-color: var(--sea-green);
    border-color: var(--sea-green);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--sea-green-dark);
    border-color: var(--sea-green-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--ocean-blue-dark);
    color: var(--wave-foam);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--sand-beige);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--wave-foam-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--coral-orange);
}

.footer-bottom {
    border-top: 1px solid var(--ocean-blue);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

/* Utility Classes */
.text-ocean { color: var(--ocean-blue); }
.text-sea { color: var(--sea-green); }
.text-coral { color: var(--coral-orange); }
.bg-ocean { background-color: var(--ocean-blue); }
.bg-sea { background-color: var(--sea-green); }
.bg-sand { background-color: var(--sand-beige); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--coral-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
    padding: 1.5rem;
    background: var(--wave-foam-light);
    border-radius: 10px;
    border-left: 4px solid var(--sea-green);
    margin-bottom: 2rem;
}

/* Career */
.career-item {
    background: var(--sand-beige-light);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Core Info */
.coreinfo-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--wave-foam-light);
    border-radius: 10px;
    border: 2px solid var(--sand-beige);
}

/* Blog */
.blog-card {
    background: var(--wave-foam-light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-container {
    padding: 1rem 0;
    background: var(--sand-beige-light);
}

.breadcrumb-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
} 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
