/* Root Variables - Unique Pastel Color Palette */
:root {
    --mint-green: #B8E6D3;
    --lavender: #E6D3F7;
    --butter-yellow: #FFF4B7;
    --soft-peach: #FFD4C4;
    --soft-coral: #FFB3B3;
    --cream-white: #FEFEFE;
    --soft-gray: #F8F8F8;
    --text-dark: #4A4A4A;
    --text-light: #7A7A7A;
    --gradient-primary: linear-gradient(135deg, #6FB98F 0%, #9B59B6 35%, #F39C12 70%, #E74C3C 100%);
    --gradient-secondary: linear-gradient(135deg, var(--soft-peach) 0%, var(--soft-coral) 100%);
    --shadow-soft: 0 8px 32px rgba(184, 230, 211, 0.2);
    --shadow-hover: 0 12px 40px rgba(184, 230, 211, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--soft-gray) 100%);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 230, 211, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--text-dark);
    text-shadow: 0 0 10px rgba(184, 230, 211, 0.5);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--mint-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--mint-green);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: var(--lavender);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--butter-yellow);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--soft-peach);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    background: var(--soft-coral);
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    /* Fallback color for browsers that don't support background-clip */
    color: #6FB98F;
    /* Enhanced gradient with better contrast */
    background: linear-gradient(135deg, #6FB98F 0%, #9B59B6 35%, #F39C12 70%, #E74C3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Ensure the element has the right display property */
    display: inline-block;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* Add support for older browsers */
    background-size: 200% 200%;
    animation: fadeInUp 1s ease 0.2s both, gradientShift 4s ease-in-out infinite;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .hero-title {
        background: none;
        color: #6FB98F;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--mint-green);
}

.btn-secondary:hover {
    background: var(--mint-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* About Section */
.about {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--soft-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--mint-green) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease 0.2s both;
}

.about-illustration {
    position: relative;
    width: 300px;
    height: 400px;
}

.mobile-device {
    width: 180px;
    height: 320px;
    background: linear-gradient(145deg, #ffffff 0%, var(--soft-gray) 100%);
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    margin: 0 auto;
    border: 3px solid var(--mint-green);
}

.mobile-device::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--text-light);
    border-radius: 2px;
}

.mobile-device::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
}

.screen {
    position: absolute;
    top: 40px;
    left: 15px;
    right: 15px;
    bottom: 70px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.app-icon {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-1 {
    background: var(--soft-peach);
    animation-delay: 0s;
}

.icon-2 {
    background: var(--butter-yellow);
    animation-delay: 0.5s;
}

.icon-3 {
    background: var(--soft-coral);
    animation-delay: 1s;
}

.icon-4 {
    background: var(--lavender);
    animation-delay: 1.5s;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.code-element,
.gear-element,
.star-element {
    position: absolute;
    font-size: 1.5rem;
    color: var(--mint-green);
    opacity: 0.7;
    animation: floatAround 4s ease-in-out infinite;
}

.code-element {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.gear-element {
    top: 60%;
    left: -15%;
    animation-delay: 1.5s;
}

.star-element {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.about-text {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease 0.4s both;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.about-description {
    line-height: 1.7;
}

.about-description p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease both;
}

.about-description p:nth-child(1) {
    animation-delay: 0.6s;
}

.about-description p:nth-child(2) {
    animation-delay: 0.8s;
}

.about-description p:nth-child(3) {
    animation-delay: 1s;
}

/* About Section Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-3deg);
    }
}

/* Services Section */
.services {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--cream-white) 100%);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.service-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--mint-green);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.service-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--lavender);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.service-shape.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--soft-coral);
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s both;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 230, 211, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease both;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--lavender) 50%, var(--soft-coral) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    box-shadow: 0 8px 20px rgba(184, 230, 211, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(184, 230, 211, 0.4);
}

.service-icon div {
    font-size: 2rem;
    filter: grayscale(0);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--soft-gray) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.portfolio-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.portfolio-shape.shape-1 {
    width: 250px;
    height: 250px;
    background: var(--lavender);
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.portfolio-shape.shape-2 {
    width: 180px;
    height: 180px;
    background: var(--mint-green);
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

.portfolio-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--soft-coral);
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.portfolio-shape.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--butter-yellow);
    top: 30%;
    left: 15%;
    animation-delay: 6s;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s both;
}

.portfolio-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
}

.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease both;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

.portfolio-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(184, 230, 211, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-mockup {
    width: 140px;
    height: 240px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: perspective(600px) rotateX(5deg) rotateY(-5deg);
    transition: all 0.3s ease;
}

.portfolio-card:hover .app-mockup {
    transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(1.05);
}

.mockup-screen {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 8px;
    border-radius: 6px;
}

.mockup-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-element {
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.mockup-element.element-1 {
    width: 80%;
}

.mockup-element.element-2 {
    width: 60%;
}

.mockup-element.element-3 {
    width: 90%;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 230, 211, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
}

.portfolio-card:hover .view-project-btn {
    transform: translateY(0);
}

.view-project-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-project-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.portfolio-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--cream-white) 50%, var(--mint-green) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 10s ease-in-out infinite;
}

.contact-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.contact-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--soft-coral) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.contact-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--butter-yellow) 0%, transparent 70%);
    top: 60%;
    right: 25%;
    animation-delay: 6s;
}

.contact-shape.shape-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--soft-peach) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation-delay: 9s;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s both;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 50%, var(--soft-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease 0.4s both;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(184, 230, 211, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--lavender) 33%, var(--soft-coral) 66%, var(--butter-yellow) 100%);
    border-radius: 30px 30px 0 0;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(248, 248, 248, 0.8);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.05),
        0 5px 20px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        inset 0 2px 10px rgba(184, 230, 211, 0.2),
        0 0 30px rgba(184, 230, 211, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.submit-btn {
    width: 100%;
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(184, 230, 211, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 230, 211, 0.6);
    animation: buttonBounce 0.6s ease;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-text,
.btn-loading {
    transition: all 0.3s ease;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.contact-info {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease 0.6s both;
}

.contact-illustration {
    position: relative;
    height: 300px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

.message-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: bubbleFloat 4s ease-in-out infinite;
}

.bubble-1 {
    width: 80px;
    height: 60px;
    top: 20%;
    left: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    animation-delay: 0s;
}

.bubble-dot {
    width: 8px;
    height: 8px;
    background: var(--mint-green);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.bubble-dot:nth-child(2) { animation-delay: 0.2s; }
.bubble-dot:nth-child(3) { animation-delay: 0.4s; }

.bubble-2 {
    width: 100px;
    height: 70px;
    top: 50%;
    right: 10%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation-delay: 2s;
}

.bubble-line {
    height: 4px;
    background: var(--lavender);
    border-radius: 2px;
}

.line-1 { width: 80%; }
.line-2 { width: 60%; }

.bubble-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-delay: 4s;
}

.bubble-heart {
    font-size: 2rem;
    animation: heartBeat 2s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-float {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: iconFloat 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.icon-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.icon-3 {
    top: 70%;
    left: 15%;
    animation-delay: 5s;
}

.contact-details {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.details-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.details-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(184, 230, 211, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(184, 230, 211, 0.3);
}

.contact-text {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 400px;
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.success-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successPulse 1s ease-in-out;
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(184, 230, 211, 0.3);
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 230, 211, 0.4);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--cream-white) 30%, var(--mint-green) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 2rem 0;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--mint-green) 50%, var(--soft-peach) 100%);
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.3;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 12s ease-in-out infinite;
}

.footer-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.footer-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--soft-coral) 0%, transparent 70%);
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.footer-shape.shape-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--butter-yellow) 0%, transparent 70%);
    top: 60%;
    right: 30%;
    animation-delay: 8s;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s both;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 50%, var(--soft-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--lavender) 100%);
    border-radius: 1px;
}

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

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--lavender) 100%);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--text-dark);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(184, 230, 211, 0.5);
}

.footer-link:hover::before {
    width: 100%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(184, 230, 211, 0.3);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover .icon-wrapper {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    box-shadow: 0 10px 25px rgba(184, 230, 211, 0.4);
    animation: socialBounce 0.6s ease;
}

.social-icon:nth-child(1):hover .icon-wrapper {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--soft-peach) 100%);
}

.social-icon:nth-child(2):hover .icon-wrapper {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--butter-yellow) 100%);
}

.social-icon:nth-child(3):hover .icon-wrapper {
    background: linear-gradient(135deg, var(--soft-coral) 0%, var(--soft-peach) 100%);
}

.social-icon:nth-child(4):hover .icon-wrapper {
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--mint-green) 100%);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.4);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.newsletter-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-btn {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--lavender) 100%);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(184, 230, 211, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 230, 211, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
    padding-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.4s both;
}

.footer-gradient-line {
    height: 3px;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--lavender) 25%, var(--soft-coral) 50%, var(--butter-yellow) 75%, var(--soft-peach) 100%);
    border-radius: 2px;
    margin-bottom: 2rem;
    animation: gradientFlow 3s ease-in-out infinite;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.heart {
    font-size: 1.1rem;
    animation: heartBeat 2s ease-in-out infinite;
    color: var(--soft-coral);
}

/* Footer Animations */
@keyframes socialBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-5px) scale(1.1);
    }
    40% {
        transform: translateY(-10px) scale(1.15);
    }
    60% {
        transform: translateY(-7px) scale(1.12);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        transform: translateX(-10px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Footer Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-info-item {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
