:root {
    --primary: #0097a7;
    --secondary: #00e5ff;
    --accent: #ff6d00;
    --dark: #1a2b32;
    --light: #f0f8ff;
    --sand: #f4e9d3;
    --palm-green: #2e8b57;
    --ocean: #0077be;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

/* Wave Animation */
.wave-container {
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230077be" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: repeat-x;
    background-position: 0 bottom;
    background-size: 50% 100%;
    bottom: 0;
    animation: wave 12s linear infinite;
}

.wave:nth-child(2) {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2300e5ff" fill-opacity="0.6" d="M0,64L48,80C96,96,192,128,288,149.3C384,171,480,181,576,186.7C672,192,768,192,864,170.7C960,149,1056,107,1152,85.3C1248,64,1344,64,1392,64L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    animation: wave 8s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-child(3) {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230097a7" fill-opacity="0.4" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,176C672,160,768,160,864,154.7C960,149,1056,139,1152,154.7C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    animation: wave 10s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Palm Trees Animation */
.palm-tree {
    position: absolute;
    width: 150px;
    height: 300px;
    bottom: 0;
    z-index: 5;
    transform-origin: bottom center;
    animation: sway 8s ease-in-out infinite alternate;
}

.palm-tree:nth-child(1) {
    left: 10%;
    animation-delay: -2s;
}

.palm-tree:nth-child(2) {
    left: 25%;
    animation-delay: -1s;
}

.palm-tree:nth-child(3) {
    right: 20%;
    animation-delay: -3s;
}

.palm-tree:nth-child(4) {
    right: 5%;
    animation-delay: -4s;
}

@keyframes sway {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

.trunk {
    position: absolute;
    width: 30px;
    height: 200px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #8b5a2b, #a0522d, #8b5a2b);
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
}

.leaves {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
}

.leaf {
    position: absolute;
    width: 100px;
    height: 150px;
    background: var(--palm-green);
    border-radius: 50% 50% 0 50%;
    transform-origin: bottom left;
}

.leaf:nth-child(1) { transform: rotate(-30deg) skew(30deg); }
.leaf:nth-child(2) { transform: rotate(0deg) skew(30deg); }
.leaf:nth-child(3) { transform: rotate(30deg) skew(30deg); }
.leaf:nth-child(4) { transform: rotate(60deg) skew(30deg); }
.leaf:nth-child(5) { transform: rotate(90deg) skew(30deg); }
.leaf:nth-child(6) { transform: rotate(120deg) skew(30deg); }
.leaf:nth-child(7) { transform: rotate(150deg) skew(30deg); }
.leaf:nth-child(8) { transform: rotate(180deg) skew(30deg); }

/* Floating Code Animation */
.code-particle {
    position: absolute;
    color: var(--primary);
    opacity: 0.7;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    z-index: 6;
    animation: float 10s linear infinite;
    text-shadow: 0 0 5px rgba(0, 149, 167, 0.5);
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-800px) rotate(720deg); opacity: 0; }
}

/* Main Styling */
header {
    background: transparent;
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
    color: var(--accent);
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
}

.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #1a2b32, #0077be);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.beach-sand {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15%;
    background-color: var(--sand);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.laptop-container {
    position: absolute;
    bottom: 15%;
    right: 15%;
    z-index: 10;
    transform: perspective(800px) rotateX(15deg) rotateY(-15deg);
    animation: coding 3s ease-in-out infinite alternate;
}

@keyframes coding {
    0% { transform: perspective(800px) rotateX(15deg) rotateY(-15deg) translateY(0); }
    100% { transform: perspective(800px) rotateX(15deg) rotateY(-15deg) translateY(-10px); }
}

.laptop {
    width: 400px;
    height: 240px;
    background: #333;
    border-radius: 10px 10px 0 0;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.code-content {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 10px;
    white-space: pre;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.keyboard {
    width: 440px;
    height: 20px;
    background: #222;
    border-radius: 0 0 10px 10px;
    margin-left: -20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.6);
}

.btn:hover:before {
    left: 100%;
}

section {
    padding: 6rem 0;
    position: relative;
}

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

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

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -10px;
    left: 15%;
    border-radius: 2px;
}

/* Paradise Coding Section */
.paradise-coding {
    background: var(--light);
    overflow: hidden;
}

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

.paradise-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.paradise-scene {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--ocean) 0%, var(--ocean) 60%, var(--sand) 60%);
    overflow: hidden;
}

.paradise-palm {
    position: absolute;
    width: 100px;
    height: 200px;
    bottom: 40%;
    z-index: 2;
}

.paradise-palm:nth-child(1) { left: 10%; }
.paradise-palm:nth-child(2) { left: 40%; }
.paradise-palm:nth-child(3) { right: 20%; }

.paradise-dev {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.paradise-laptop {
    width: 120px;
    height: 80px;
    background: #333;
    border-radius: 5px 5px 0 0;
    transform: perspective(300px) rotateX(10deg);
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.paradise-screen {
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paradise-code {
    font-family: 'Courier New', monospace;
    color: var(--secondary);
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.paradise-person {
    width: 50px;
    height: 60px;
    margin-top: -20px;
}

.paradise-head {
    width: 20px;
    height: 20px;
    background: #f4d1a6;
    border-radius: 50%;
    margin: 0 auto;
}

.paradise-body {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 5px;
    margin: 5px auto 0;
}

.paradise-legs {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.paradise-leg {
    width: 8px;
    height: 15px;
    background: #1a2b32;
    border-radius: 5px;
}

.sun {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    top: 10%;
    right: 10%;
    box-shadow: 0 0 20px #ffd700;
    animation: sunPulse 4s infinite alternate;
}

@keyframes sunPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px #ffd700; }
    100% { transform: scale(1.1); box-shadow: 0 0 30px #ffd700, 0 0 60px rgba(255, 215, 0, 0.3); }
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: cloudFloat 20s linear infinite;
}

.cloud:nth-child(1) {
    width: 80px;
    height: 40px;
    top: 15%;
    left: -80px;
    animation-duration: 30s;
}

.cloud:nth-child(2) {
    width: 60px;
    height: 30px;
    top: 25%;
    left: -60px;
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes cloudFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100% + 100px)); }
}

.paradise-content h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.paradise-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 151, 167, 0.3);
    flex-shrink: 0;
}

/* Services Section */
.services {
    background-color: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="none" stroke="%232e8b57" stroke-width="1" opacity="0.1"/></svg>');
    opacity: 0.1;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    padding: 2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Process Section */
.process {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 0 5px rgba(255, 109, 0, 0.3);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23f0f8ff"/><path d="M0 20 L100 20" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M0 40 L100 40" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M0 60 L100 60" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M0 80 L100 80" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M20 0 L20 100" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M40 0 L40 100" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M60 0 L60 100" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/><path d="M80 0 L80 100" stroke="%232e8b57" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.2"/></svg>');
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 151, 167, 0.2);
}

.member-avatar {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.member-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.contact::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--accent);
    transform: rotateY(180deg);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Form validation styles */
.form-control.error {
    border-color: #ff6b6b !important;
    background-color: rgba(255, 107, 107, 0.05) !important;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* Loading spinner for submit button */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

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

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

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

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    color: #aaa;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
}

/* Animations for code particles */
@keyframes typing {
    0% { width: 0; }
    30% { width: 100%; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--secondary); }
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.visible {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .paradise-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .laptop-container {
        right: 5%;
        transform: scale(0.8) perspective(800px) rotateX(15deg) rotateY(-15deg);
    }
    
    .paradise-image {
        height: 400px;
    }
    
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        width: 95%;
    }
    
    header {
        padding: 1rem 0;
        position: fixed;
        background: rgba(26, 43, 50, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        transition: 0.4s;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        display: block;
        font-size: 1.2rem;
        padding: 0.8rem 0;
        text-align: center;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 5rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .laptop-container {
        display: none;
    }
    
    .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
    }
    
    .wave-container {
        height: 100px;
    }
    
    .palm-tree:nth-child(2),
    .palm-tree:nth-child(4) {
        display: none;
    }
    
    .palm-tree:nth-child(1) {
        left: 5%;
    }
    
    .palm-tree:nth-child(3) {
        right: 5%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .paradise-content h3 {
        font-size: 1.8rem;
    }
    
    .code-particle {
        font-size: 14px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding: 0.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .paradise-image {
        height: 300px;
    }
    
    .form-control {
        padding: 0.8rem;
    }
    
    /* Reduce code particles */
    .code-particle:nth-child(n+9) {
        display: none;
    }
    
    /* Simplify background elements */
    .paradise-palm:nth-child(2) {
        display: none;
    }
}

/* Animation for ripple effect */
@keyframes rippleEffect {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}
