-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
172 lines (148 loc) · 2.97 KB
/
Copy pathcontact.css
File metadata and controls
172 lines (148 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
/* Global */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
}
body {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
color: #2d3748;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 60px 20px;
}
/* Section Header */
.section-header {
text-align: center;
margin-bottom: 50px;
/* animation: fadeInDown 0.8s ease-out; */
}
/* @keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
} */
.section-header h2 {
font-size: 42px;
margin-bottom: 15px;
color: #002A5C;
font-weight: 600;
}
.section-header .highlight {
color: #1d9bf0;
}
.section-header p {
font-size: 18px;
color: #4a5568;
}
.contact-grid {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.contact-form-card {
flex: 1.5;
min-width: 350px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 24px;
padding: 40px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-card input,
.contact-form-card textarea {
width: 100%;
padding: 15px;
margin-bottom: 20px;
border-radius: 12px;
border: 1px solid #e2e8f0;
background: white;
color: #2d3748;
font-size: 15px;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
outline: none;
border-color: #1d9bf0;
box-shadow: 0 0 0 3px rgba(29, 155, 240, 0.1);
}
.contact-form-card button {
width: 100%;
padding: 15px;
border: none;
border-radius: 12px;
background: #002A5C;
color: #fff;
font-weight: 600;
font-size: 16px;
cursor: pointer;
transition: all 0.3s;
}
/* .contact-form-card button:hover {
background: #1d9bf0;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(29, 155, 240, 0.3);
} */
.contact-info {
flex: 1;
min-width: 300px;
display: flex;
flex-direction: column;
gap: 25px;
}
.info-card {
background: white;
border-radius: 24px;
padding: 30px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
border: 1px solid #e2e8f0;
}
.info-card h3 {
margin-bottom: 20px;
color: #002A5C;
font-size: 20px;
}
.info-card p {
margin-bottom: 12px;
color: #4a5568;
display: flex;
align-items: center;
gap: 10px;
}
/* Social links */
.social-links {
margin-top: 10px;
display: flex;
gap: 15px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 10px;
background: #f7fafc;
border: 1px solid #e2e8f0;
text-decoration: none;
color: #002A5C;
transition: all 0.3s;
}
.social-links a:hover {
transform: translateY(-5px);
background: #1d9bf0;
color: white;
border-color: #1d9bf0;
}
/* Opening Hours */
.opening-hours h4 {
margin-bottom: 12px;
color: #002A5C;
font-weight: 600;
}