/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #001a1c;
    background: #ffffff;
    background-attachment: fixed;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 2000;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #001a1c;
    text-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #001a1c 0%, #003d45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: -180px;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin-right: -180px;
}

.nav-links a {
    color: #001a1c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 24px;
    border-radius: 25px;
    background: transparent;
    border: 2px solid rgba(0, 26, 28, 0.2);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(0, 26, 28, 0.9);
    border-color: rgba(0, 26, 28, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 26, 28, 0.2);
}

.nav-links a::after {
    display: none;
}

.nav-links a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #001a1c;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 26, 28, 0.1);
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #001a1c;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(0, 26, 28, 0.1);
}

.sidebar-nav {
    list-style: none;
    margin-top: 3rem;
}

.sidebar-nav li {
    margin-bottom: 1.5rem;
}

.sidebar-nav a {
    color: #001a1c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid rgba(0, 26, 28, 0.2);
}

.sidebar-nav a:hover {
    background: rgba(0, 26, 28, 0.1);
    border-color: rgba(0, 26, 28, 0.4);
    transform: translateX(5px);
}

.sidebar-nav a i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.hero {
    padding: 80px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f3f3f3, #02191e);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #001a1c 0%, #003d45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
}

.hero-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #003d45;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #475569;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #001a1c 0%, #003d45 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 26, 28, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #003d45 0%, #001a1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 26, 28, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #001a1c;
    border: 2px solid rgba(0, 26, 28, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 26, 28, 0.1);
    border-color: rgba(0, 26, 28, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 26, 28, 0.1);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta-feature-card {
  position: relative;
  background: #0a0908;
  padding: 1.5rem;
  border-radius: 20px;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.insta-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #d4a574;
  color: #0a0908;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.insta-caption {
  margin-top: 1rem;
  color: #cfcac4;
  font-size: 14px;
  text-align: center;
}


/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #ffffff;
    color: #001a1c;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
    color: #635f5f;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    justify-items: center; /* stops over-stretching */
}

.portfolio-item {
    width: 100%;
    max-width: 420px; /* IMPORTANT: limits card width */
    background: #000000;
    border-radius: 16px;
    padding: 1rem; /* reduced */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.portfolio-preview {
    width: 100%;
    height: 360px; /* BIG UI PREVIEW */
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 0.75rem;
    background: #f3f4f6;
}

.portfolio-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1); /* full size website */
    transform-origin: top left;
}

.portfolio-info {
    font-size: 0.9rem;
}

.portfolio-info h3 {
    margin: 0.25rem 0;
    font-size: 1rem;
    color: #f3f3ff;

}

.portfolio-info p {
    margin: 0.25rem 0;
    line-height: 1.4;
    color: #f3f3ff;
}

.btn-view {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #02191e, #02191e);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(223, 220, 220, 0.905);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.848) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(230, 223, 223, 0.91);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00171a;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #011615;
}

.service-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #011615;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00171a;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00171a;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #ffffff;
    color: #001a1c;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #02191e, #02191e);
    transition: all 0.3s ease;
    color: #ffffff;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 26, 28, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f3f3f3;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f3f3f3;
}

.contact-item p {
    color: #ffffff;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-contact {
    background: #f3f3f3;
    color: #02191e;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-contact:hover {
    background: #ffffff;
    color: #02191e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 243, 243, 0.3);
}

/* Mobile swipe hint */
.contact-grid::before {
    content: '← Swipe →';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #8e8e8e;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInOut 3s ease-in-out;
    pointer-events: none;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.live-text {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Instagram Post */
.instagram-post {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 26, 28, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 26, 28, 0.2);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #efefef;
}

.instagram-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: #001a1c;
}

.timestamp {
    font-size: 12px;
    color: #8e8e8e;
}

.instagram-menu {
    color: #8e8e8e;
    cursor: pointer;
}

.instagram-image img {
    width: 100%;
    height: auto;
    display: block;
}

.instagram-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.action-buttons i,
.instagram-menu i,
.instagram-actions .fa-bookmark {
    font-size: 20px;
    color: #001a1c;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-buttons i:hover,
.instagram-menu:hover,
.instagram-actions .fa-bookmark:hover {
    color: #dc2626;
}

.instagram-caption {
    padding: 0 16px 12px;
    font-size: 14px;
    line-height: 1.4;
}

.caption-username {
    font-weight: 600;
    color: #001a1c;
    margin-right: 8px;
}

.caption-text {
    color: #001a1c;
}

.instagram-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 16px;
    font-size: 12px;
}

.likes {
    font-weight: 600;
    color: #001a1c;
}

.view-post {
    color: #003d45;
    font-weight: 500;
    cursor: pointer;
}

.view-post:hover {
    text-decoration: underline;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #02191e, #f3f3f3);
    text-align: center;
}

.offer-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offer-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-offer {
    background: #ffffff;
    color: #001b1d;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-offer:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


/* Footer */
.footer {
    background: #ffffff;
    color: #001a1c;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #001a1c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #001a1c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 26, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #001a1c;
}

.social-links a:hover {
    background: #001a1c;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 26, 28, 0.1);
}

.footer-logo {
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    color: #001a1c;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    display: block;
}

.footer-bottom p {
    color: #475569;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .logo {
        margin-left: -30px;
    }
    
    .nav-links {
        margin-right: -80px;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-left h2 {
        font-size: 1.5rem;
    }
    
    .hero-left p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .contact-grid {
        display: flex;
        grid-template-columns: none;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #001a1c #f1f1f1;
        scroll-behavior: smooth;
        width: 100%;
    }
    
    .contact-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .contact-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .contact-grid::-webkit-scrollbar-thumb {
        background: #001a1c;
        border-radius: 10px;
    }
    
    .contact-grid::-webkit-scrollbar-thumb:hover {
        background: #003d45;
    }
    
    .contact-item {
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: center;
        flex-shrink: 0;
        margin: 0;
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .contact {
        position: relative;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .offer-content h2 {
        font-size: 2rem;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
    }
    
    .offer-content p {
        font-size: 1rem;
    }
    
    .btn-offer {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .footer-logo {
        font-size: 5rem;
        letter-spacing: 0.3rem;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 60px;
    }
    
    .hero-left h1 {
        font-size: 1.8rem;
    }
    
    .hero-left h2 {
        font-size: 1.3rem;
    }
    
    .hero-left p {
        font-size: 0.9rem;
    }
    
    .live-indicator {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-item,
    .service-card {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .contact-item {
        min-width: 260px;
        max-width: 290px;
        padding: 1.2rem;
    }
    
    .service-card h3,
    .contact-item h3 {
        font-size: 1.3rem;
    }
    
    .service-icon,
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-contact,
    .btn-offer {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .offer-content h2 {
        font-size: 1.8rem;
    }
    
    .offer-content h3 {
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}
