/* 
 * Style system for WEBRK PRIVATE LIMITED
 * Modern, professional, high-performance UI stylesheet.
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Color Palette derived from WEBRK Logo */
    --color-primary: #1E3E62;       /* Deep corporate blue-gray */
    --color-secondary: #E33226;     /* Vibrant red/coral arrow color */
    --color-dark: #2C353F;          /* Dark charcoal from logo text */
    --color-light: #F8FAFC;         /* Soft slate off-white */
    --color-white: #FFFFFF;
    --color-muted: #64748B;         /* Slate gray body text */
    --color-border: #E2E8F0;        /* Cool gray border */
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #1E3E62 0%, #2B5C8F 100%);
    --grad-accent: linear-gradient(135deg, #E33226 0%, #FF6B6B 100%);
    --grad-mixed: linear-gradient(135deg, #1E3E62 0%, #A03347 50%, #E33226 100%);
    --grad-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.08), 0 4px 6px -2px rgba(30, 41, 59, 0.04);
    --shadow-glow: 0 10px 25px -5px rgba(227, 50, 38, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Container width */
    --max-width: 1280px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark);
}

h1 { font-size: 2.75rem; letter-spacing: -0.025em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* Helpers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.py-section { padding-top: 6rem; padding-bottom: 6rem; }
.py-half { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.my-b { margin-bottom: 1.5rem; }
.my-t { margin-top: 1.5rem; }

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    background-color: rgba(227, 50, 38, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 62, 98, 0.25);
    color: var(--color-white);
}

.btn-accent {
    background: var(--grad-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Header / Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.5rem;
    transition: var(--transition-fast);
}

.site-header.scrolled .nav-container {
    height: 4.5rem;
}

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

.logo-img {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-secondary);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero-section {
    background: var(--grad-dark);
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
    color: var(--color-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(227, 50, 38, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 35rem;
    height: 35rem;
    background: radial-gradient(circle, rgba(30, 62, 98, 0.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: rgba(248, 250, 252, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-shape-container {
    width: 100%;
    max-width: 450px;
    height: 450px;
    position: relative;
}

.hero-blob {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 62, 98, 0.6) 0%, rgba(227, 50, 38, 0.15) 100%);
    border-radius: 43% 57% 65% 35% / 40% 45% 55% 60%;
    animation: blob-bounce 12s ease-in-out infinite alternate;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.hc-1 {
    top: 15%;
    left: -10%;
    animation: float-slow 6s ease-in-out infinite alternate;
}

.hc-2 {
    bottom: 15%;
    right: -5%;
    animation: float-slow 6s ease-in-out infinite alternate-reverse 1.5s;
}

.hc-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-white);
}

.hc-1 .hc-icon { background: var(--color-secondary); }
.hc-2 .hc-icon { background: var(--color-primary); }

.hc-text h5 { color: var(--color-white); margin-bottom: 0.15rem; font-size: 1rem;}
.hc-text p { margin-bottom: 0; font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* Services Grid & Cards */
.section-header {
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    margin-bottom: 1.25rem;
}

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

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.25rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    transition: var(--transition-normal);
    transform: scaleX(0);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 62, 98, 0.15);
}

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

.service-card.accent::before {
    background: var(--grad-accent);
}

.sc-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.service-card:hover .sc-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.service-card.accent:hover .sc-icon {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.readmore-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
}

.service-card.accent .readmore-link {
    color: var(--color-secondary);
}

.readmore-link i {
    transition: var(--transition-fast);
}

.service-card:hover .readmore-link i {
    transform: translateX(5px);
}

/* Features/About Split Section */
.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.split-image-wrapper {
    position: relative;
}

.split-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4/3;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-img-placeholder {
    color: rgba(255,255,255,0.7);
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.split-img-placeholder span {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 3;
    border-left: 5px solid var(--color-secondary);
}

.fb-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.fb-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-dark);
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.fi-icon {
    color: var(--color-secondary);
    font-size: 1.15rem;
    margin-top: 0.25rem;
}

.fi-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.fi-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Call to Action */
.cta-section {
    background: var(--grad-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(227, 50, 38, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    max-width: 650px;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Page Header (Subpages) */
.page-header {
    background: var(--grad-dark);
    color: var(--color-white);
    padding: 8.5rem 0 5rem 0;
    position: relative;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li:last-child::after {
    content: none;
}

.breadcrumb li.active {
    color: var(--color-secondary);
    font-weight: 500;
}

/* Service Details Template */
.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main-content h2 {
    margin-bottom: 1.5rem;
}

.service-main-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-illustration {
    background: var(--grad-primary);
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 4rem;
    box-shadow: var(--shadow-md);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.s-feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition-normal);
}

.s-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 62, 98, 0.15);
}

.s-feature-card i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.s-feature-card h4 {
    margin-bottom: 0.5rem;
}

.s-feature-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Sidebar */
.sidebar-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    margin-bottom: 2rem;
}

.sidebar-box.dark {
    background: var(--grad-dark);
    color: var(--color-white);
    border: none;
}

.sidebar-box.dark h3 {
    color: var(--color-white);
}

.sidebar-box.dark p {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 3rem;
    height: 2px;
    background: var(--color-secondary);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.75rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: var(--color-light);
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    font-weight: 500;
}

.sidebar-menu a:hover, .sidebar-menu li.active a {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.sci-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sci-item i {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-top: 0.25rem;
}

.sci-text h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin-bottom: 0.15rem;
}

.sci-text p {
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0;
}

.sidebar-box.dark .sci-text p {
    color: var(--color-white);
}

/* Contact Page Form & Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h2 {
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(30, 62, 98, 0.15);
}

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

/* Form Status Messages */
.form-status {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.c-info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.c-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 62, 98, 0.1);
}

.cic-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-sm);
    background-color: rgba(227, 50, 38, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.cic-details h4 {
    margin-bottom: 0.35rem;
}

.cic-details p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-top: 4rem;
    height: 450px;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Legal Pages (Privacy Policy, Terms & Conditions) */
.legal-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 4rem 3.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--color-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-muted);
}

/* About Page Specifics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem;
    background: var(--grad-dark);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.stat-card p {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Footer styling */
.site-footer {
    background-color: #0F172A;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo-img {
    height: 3rem;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* makes dark logo white */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--color-secondary);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

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

.f-contact-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.f-contact-item i {
    color: var(--color-secondary);
    margin-top: 0.25rem;
}

.f-contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

.legal-footer-note {
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.4);
    margin-top: 2rem;
    border-left: 3px solid var(--color-primary);
}

/* Animations */
@keyframes blob-bounce {
    0% { border-radius: 43% 57% 65% 35% / 40% 45% 55% 60%; transform: rotate(0deg); }
    100% { border-radius: 65% 35% 40% 60% / 55% 40% 60% 45%; transform: rotate(15deg); }
}

@keyframes float-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Scroll Fade In Animation System */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-shape-container {
        margin: 0 auto;
        max-width: 350px;
        height: 350px;
    }
    
    .hc-1 { left: -5%; }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 5.5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 5.5rem);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem;
        gap: 1.5rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .site-header.scrolled .nav-menu {
        top: 4.5rem;
        height: calc(100vh - 4.5rem);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-link {
        font-size: 1.15rem;
        width: 100%;
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-btns {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .legal-wrapper {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #25D366;
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(37, 211, 102, 0.25);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-float i {
    animation: whatsapp-pulse 2s infinite alternate;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(0.92); }
    100% { transform: scale(1.08); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.75rem;
    }
}
