/* Color Palette - Based on Logo */
:root {
    --primary-blue: #002D62;
    --primary-blue-light: #1e4a8f;
    --primary-blue-dark: #001a33;
    --secondary-green: #3CB371;
    --secondary-green-light: #4fd090;
    --secondary-green-dark: #2e8b57;
    --text-grey: #6C757D;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --alabaster-white: #f8f8f8;
    --alabaster-white-dark: #e8e8e8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--alabaster-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 33, 71, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: var(--secondary-green) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-green);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    filter: blur(0px);
}

.blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

@keyframes blueprint-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-logo-img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title {
    color: var(--alabaster-white);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
    animation: slideInFromLeft 1.2s ease-out;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
    white-space: nowrap;
}

.hero-subtitle {
    color: var(--alabaster-white);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
    animation: slideInFromRight 1.2s ease-out 0.3s both;
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 10px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.btn-primary {
    background-color: var(--secondary-green);
    color: var(--alabaster-white);
}

.btn-primary:hover {
    background-color: var(--secondary-green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(60, 179, 113, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--alabaster-white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-green);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Pillars Section */
.pillars {
    padding: 6rem 0;
    background-color: var(--alabaster-white);
}

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

.pillar-card {
    background: var(--alabaster-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--alabaster-white-dark);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.15);
    border-color: var(--secondary-green);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--alabaster-white);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    transform: scale(1.1);
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
}

.services .section-title,
.services .section-subtitle {
    color: var(--alabaster-white);
}

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

.service-card {
    background: var(--alabaster-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brushed-gold), var(--brushed-gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 179, 113, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--alabaster-white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

/* Process Section */
.process {
    padding: 6rem 0;
    background-color: var(--alabaster-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-green), var(--secondary-green-light));
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alabaster-white);
    border: 3px solid var(--secondary-green);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    color: var(--alabaster-white);
    transform: scale(1.1);
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--alabaster-white);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--alabaster-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.principle-quote {
    border-left: 4px solid var(--secondary-green);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--alabaster-white);
    font-size: 1.1rem;
}

.principle-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--secondary-green);
}

.about-visual {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.blueprint-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

.blueprint-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid var(--secondary-green);
    border-radius: 50%;
    opacity: 0.8;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--alabaster-white);
}

.blog-section .section-title {
    color: var(--primary-blue);
}

.blog-section .section-subtitle {
    color: var(--text-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.blog-card {
    background: var(--alabaster-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--alabaster-white-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.15);
    border-color: var(--secondary-green);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-grey);
    font-weight: 500;
}

.blog-category {
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    color: var(--alabaster-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-green-light);
    transform: translateX(5px);
}

/* Blog Modal Styles */
.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.blog-modal {
    background: var(--alabaster-white);
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 45, 98, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-modal-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-green);
    color: var(--alabaster-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-modal-close:hover {
    background: var(--secondary-green-light);
    transform: scale(1.1);
}

.blog-modal-body {
    padding: 3rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.blog-modal-body h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--secondary-green);
    padding-bottom: 0.5rem;
}

.blog-modal-body h3 {
    color: var(--primary-blue);
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
}

.blog-modal-body p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.blog-modal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Blog Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-modal {
        margin: 1rem;
        max-width: 95%;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-card {
        margin-bottom: 1rem;
    }
    
    .blog-modal {
        margin: 0.5rem;
        max-width: 98%;
        max-height: 98vh;
    }
    
    .blog-modal-body {
        padding: 2rem;
    }
    
    .blog-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-modal-body h3 {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-blue-dark);
    color: var(--alabaster-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-light);
}

.footer-contact h4 {
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--secondary-green);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(60, 179, 113, 0.2);
    color: var(--text-light);
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Founder Section */
.about-founder-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--alabaster-white) 0%, #f0f0f0 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.founder-image {
    text-align: center;
}

.founder-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--alabaster-white);
    box-shadow: 0 15px 30px rgba(0, 45, 98, 0.2);
    transition: transform 0.3s ease;
}

.founder-placeholder:hover {
    transform: scale(1.05);
}

.founder-info h3 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.founder-title {
    color: var(--secondary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.founder-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.expertise-grid {
    margin-bottom: 2rem;
}

.expertise-grid h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--alabaster-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 45, 98, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.15);
    background: linear-gradient(135deg, var(--alabaster-white) 0%, #f8f8f8 100%);
}

.expertise-item i {
    color: var(--secondary-green);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.expertise-item span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.founder-approach {
    background: var(--alabaster-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.1);
    border-left: 4px solid var(--secondary-green);
}

.founder-approach h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.founder-approach p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background-color: var(--alabaster-white);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--oxford-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--alabaster-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 45, 98, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-green);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.15);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--secondary-green);
    width: 30px;
    text-align: center;
}

.contact-method h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.form-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 45, 98, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--alabaster-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(248, 248, 248, 0.2);
    border-radius: 8px;
    background: rgba(248, 248, 248, 0.1);
    color: var(--alabaster-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 248, 248, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    background: rgba(248, 248, 248, 0.15);
    box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--alabaster-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--secondary-green);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.form-submit {
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    color: var(--alabaster-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(60, 179, 113, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #4caf50;
    margin-top: 1rem;
}

.form-success i {
    font-size: 1.5rem;
}

/* WhatsApp Link Styling */
.whatsapp-link {
    color: var(--alabaster-white) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--secondary-green) !important;
}

.whatsapp-link i {
    color: var(--secondary-green);
    transition: color 0.3s ease;
}

.whatsapp-link:hover i {
    color: var(--secondary-green-light);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    background-color: #128C7E;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--alabaster-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .pillar-card,
    .service-card {
        padding: 2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .founder-info h3 {
        font-size: 1.8rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .expertise-items {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .expertise-item {
        padding: 0.6rem;
    }
    
    .founder-approach {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        animation: slideInFromLeft 1s ease-out;
        background: rgba(0, 0, 0, 0.6);
        padding: 0.8rem 1.2rem;
        white-space: nowrap;
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        animation: slideInFromRight 1s ease-out 0.2s both;
        background: rgba(0, 0, 0, 0.5);
        padding: 1.2rem;
    }
    
    .hero-background {
        background-position: center center;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .pillars-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
}
